Skip to content

count() emitting an E_WARNING

Prior to PHP 7.2 using count() on a scalar value or non-countable object would return 1 or 0. For example: https://3v4l.org/tGRDE var_dump(count(123)); //int(1) var_dump(count(new stdclass)); //int(…

HttpURLConnection getting wrong response

Well, my php file includes simple code <?php echo “hello there” ?> Whenever I try read the file using HttpURLConnection.getInputStream(); it returns All I want is to just read the raw file.. only “hello there” .. not anything else.. how to do that ? Answer The question is old and…

“405 Method not allowed” in Laravel 5.6.14

I am just learning laravel resource methods to build a basic API. Below is the code of my api.php file that shows all the API routes. This works perfectly on get and delete methods. But for Post method, it is throwing error “405 Method not allowed”. I am using Postman to test the API calls. To be …