BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
ably
/
ably-php
/
src
/
Utils
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Stringifiable.php
<?php namespace Ably\Utils; class Stringifiable { public static function buildQuery($params = []) { $func = function ($value) { if ($value === true) return 'true'; if ($value === false) return 'false'; return $value; }; return http_build_query(array_map($func, $params)); } }
Save
Cancel