Ernesto Aides

- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created 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) -
Created 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 ...