PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php /* Set locale to Dutch */ setlocale(LC_ALL, 'nld_nld'); $s = $mysqli->prepare('SELECT CAST(42.54 AS FLOAT) '); $s->execute(); $res = $s->get_result()->fetch_row(); echo $res[0]; var_dump($res[0]);
Show:  
Copy Clear