Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Rob W

Rob W

Rob W has asked 1 questions and find answers to 15 problems.

Stats

482
EtPoint
171
Vote count
1
questions
15
answers

About

Developing while learning and helping others.

Top PHP issues I see on SO and my suggestions:

  1. Stop using mysql_* functions. They are deprecated. Instead, look into using PDO along with binding values. Be aware that bindValue and bindParam work differently.
  2. Stop using time stamps. Use the DateTime object instead. Convert all of your time stamps in tables to the DATETIME type as well. You'll no longer have to worry about which PHP architecture you're on and you'll have a plethora of functionality readily available instead of writing your own.
  3. You can pass external variables into a closure's scope, along with the ability to modify it (if passed by reference using &), by using the use keyword. Example:

$externalVar = 10; print_r(array_map(function($value) use (&$externalVar) { $externalVar++; return $value * $externalVar; }, range(1, 10)));

  1. Use CSRF tokens in your forms! And clear them after single use! Old laravel example
  2. If Google PageSpeed docks your score for analytics, then cheat back!
  3. You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML.