|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patchesphp-pecl-memcache-3.0.6-admin.patch (last revision 2011-11-14 00:34 UTC by admin at yqed dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-11-15 20:54 UTC] rasmus@php.net
-Status: Open
+Status: Duplicate
[2011-11-15 20:54 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 06:00:01 2025 UTC |
Description: ------------ Latest 3.0.6 beta: function get_host_port_from_server($server){ $values = explode(':', $server); if (($values[0] == 'unix') && (!is_numeric( $values[1]))) { return array($server, 0); } else { return values; } } The dollar sign is missing on returned values, it should be $values.