PHP 8.5.0 Alpha 1 available for testing

Voting

: six minus six?
(Example: nine)

The Note You're Voting On

Anonymous
12 years ago
It may be worth noting that if you accidentally call implode on a string rather than an array, you do NOT get your string back, you get NULL:
<?php
var_dump
(implode(':', 'xxxxx'));
?>
returns
NULL

This threw me for a little while.

<< Back to user notes page

To Top