Posts by Maike Oliveira • 46 points
5 posts
-
2
votes2
answers343
viewsA: Doubt about autoload using Poser
It is not possible any file needs its references, The Standard also performs a require as can be seen in the print below:…
-
0
votes1
answer48
viewsA: When adding HTML gives header error
There can be no printout of the header for PDF creation by the library, even because there would be no reason to insert this code in the middle of the HTML structure, creates a call for generation…
-
1
votes1
answer292
viewsA: Laravel informs that the page was not found: 404 on the master/test route
Start by changing your route so you can reach your controller and stop displaying the 404 (Remember that 404 is page not found): Web.php Route::post('master',…
-
0
votes1
answer35
viewsA: Color recognition with switch/case
See if this is what you need unfortunately I don’t quite understand what your doubt is if it is only the use of the switch follows below your conversion of if: switch(pixelAtual) { case 0xFF000000:…
-
0
votes1
answer80
viewsA: Php namespace inherits "use" from another class
No, namespaces are only for referencing and locating the object within its code structure having no reason to have inheritance or any business rule for it. If you need to use the same methods and…