PHP Notice: A non well formed numeric value encountered in


개요

PHP Notice: A non well formed numeric value encountered in
<?php
var_dump( 0 + "5.1)" );
root@zetawiki:~# php a.php
PHP Notice:  A non well formed numeric value encountered in /root/a.php on line 2
float(5.1)
<?php
var_dump( 0 + "5.1" );
root@zetawiki:~# php a.php
float(5.1)

같이 보기