Ernesto Aides

- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
-
-
Ernesto Aides created a post, AnsweredGiet log search dissapear in new version PHPStrom
With the new version of PHPStorm, in the “Git -alt 9-” window, for the LOG section, in previous versions we had a search input to search by developer or task name/description.In the new version, I ... -
Ernesto Aides created a post, Identify potential ArgumentCountError in phpstorm
Which type of inspection can be used for search, in a whole project, call to functions with less number of mandatory parameters, that will throw a fatal error since PHP 7.1 (before was only a waning) -
Ernesto Aides commented, -
-
Ernesto Aides created a post, How to ignore error for a query wich is defined in several lines
I have to write a query like that $sep = "";$query = "SELECT * FROM `my_table` WHERE `id` IN(";foreach ($my_array as $item_id) { $query .= $sep . $item_id; $sep = ',';}$query .= ")"; The final ...