J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.
5138 links
An ebook with lots of tips and techniques on how to debug CSS the right way with easy and studied methods.
PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code. It moves PHP closer to compiled languages in the sense that the correctness of each line of the code can be checked before you run the actual line.
**
* Envoie un message vers la console javascript pour aider au déboggage.
* @author J.P. Pourrez alias bazooka07
* @version 2017-06-09
* */
public static function debugJS($obj, $msg='') {
if(!empty($msg)) $msg .= ' = ';
$msg .= (is_array($obj)) ? print_r($obj, true) : ((is_string($obj)) ? "\"$obj\"" : $obj);
echo <<< EOT
<script type="text/javascript">
console.log(`$msg`);
</script>
EOT;
}
<?php plxUtils::debugJS($plxShow->plxMotor->aConf, 'Config de Pluxml ='); ?>
Une barre de debug pour php.
À tester.