Posts by Rohan • 93 points
6 posts
-
0
votes1
answer95
viewsA: How to print data from an array
There’s an error in the line: if(isset($_POST)) { According to the function documentation isset: Checks whether the variable is set. If the variable is destroyed with unset(), she will no longer…
-
0
votes1
answer87
views -
4
votes1
answer443
views -
0
votes2
answers202
viewsA: Parameters in JOB Laravel class 5.8
Hello! I noticed that the Importdocumentjob class has a constructor that waits as parameter: ImportDocumentsServices $services Thus, the instantiation of the object referred to this class should be:…
-
2
votes3
answers228
viewsA: Delete automated files
Hello! I noticed there’s a error syntax in your code: if($objs = glob($dir)){ Right: if($objs == glob($dir)){ In my view, the explanation of your problem was not very clear. I could give more…
-
0
votes1
answer48
viewsQ: Type varchar mysql limit
Can anyone explain what the varchar limit is? I read the following: a Mysql database has a limit of 65,535 bytes (for the entire line) However, how byte counting is performed? My initial thought is…