Posts by Bruno Luiz K. • 166 points
4 posts
-
6
votes1
answer241
viewsA: How to test Exports of a package?
Following its logic, the only possible way (I believe) would be to "scan" all the components required for the application to run. In architecture: src |---components |---com1 \--> export function…
-
2
votes2
answers93
viewsA: Laravel 6 escaping html Blade template
The flag autoescape (here) It’s the Twig template, not Blade. As much as Laravel lets you use both at the same time, it will confuse other developers later here. I’m not sure which version of…
-
1
votes1
answer431
viewsA: How to view PHP errors using Ajax and JSON?
Well, usually I do the following; $message = array("message" => "", "error" => ""); try{ //Seu código aqui }catch (Exception $e){ $message['message'] = "Coloque a mensagem de erro aqui";…
-
1
votes0
answers39
viewsQ: Access to subfolders in the URL is being blocked by . htaccess
Hi, I have a url for a system where "test" in a subfolder within the system directory. The .htaccess directs the index to a file "php app." what is the file that makes the autoload of the system.…