Posts by Rodrigo Peixoto • 68 points
4 posts
-
3
votes1
answer1280
viewsA: What is Reactphp , is it worth using?
Reactphp is a low-level library for PHP event-oriented programming. At its core is an event loop, upon which it provides low-level utilities such as: stream abstraction, asynchronous DNS resolution,…
phpanswered Rodrigo Peixoto 68 -
-1
votes2
answers1072
viewsA: Is it possible to process data receipt in Camel Casing using Odata?
You can use the Enablelowercamelcase extension method: Using System.Web.OData.Builder; Using System.Web.OData.Extensions; Var builder = new ODataConventionModelBuilder ();…
-
-1
votes1
answer954
viewsA: Connection Progress database by PHP (Laravel framework), PDO
As you said you have already chosen standard database as Postgres SQL 'Default' => 'pgsql', You must compulsorily uncomment the lines that call the Pdo and postgres extensions in your php…
-
1
votes1
answer603
viewsA: Send post data in file_get_contents
The error "php_network_getaddresses: getaddrinfo failed: Name or service not known", usually happens when we try to use the stream_get_contents or file_get_contents function and pass a url in the…