本文整理汇总了PHP中Str::setValueType方法的典型用法代码示例。如果您正苦于以下问题:PHP Str::setValueType方法的具体用法?PHP Str::setValueType怎么用?PHP Str::setValueType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Str
的用法示例。
在下文中一共展示了Str::setValueType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: importServerOptions
/**
* Importe les options du serveur depuis un fichier
*
* @param string $file -> Chemin du fichier à lire
* @return array
*/
public static function importServerOptions($file)
{
global $client;
$out = array();
if (file_exists($file)) {
$dom = new DOMDocument();
$dom->load($file);
$srvopts = $dom->childNodes->item(0);
for ($i = 0; $i < $srvopts->childNodes->length; $i++) {
$srvoptsElement = $srvopts->childNodes->item($i);
if ($srvoptsElement->nodeName != '#text') {
$out[$srvoptsElement->nodeName] = Str::setValueType($srvoptsElement->nodeValue, $srvoptsElement->getAttribute('type'));
}
}
} else {
self::error(Utils::t('No such file or file is not readable') . ' : ' . $file);
}
return $out;
}
示例2: array
$method = null;
}
if (isset($_POST['params'])) {
$params = $_POST['params'];
} else {
$params = null;
}
// DATA
$out = null;
if (AdminServ::initialize()) {
if (SERVER_VERSION_NAME == 'ManiaPlanet') {
if ($method == 'set' && $params != null) {
$scriptSettings = array();
if (count($params) > 0) {
foreach ($params as $param) {
$scriptSettings[$param['name']] = Str::setValueType($param['value'], $param['type']);
}
}
if (!$client->query('SetModeScriptSettings', $scriptSettings)) {
$out = '[' . $client->getErrorCode() . '] ' . $client->getErrorMessage();
} else {
$out = true;
}
} else {
if (!$client->query('GetModeScriptInfo')) {
$out = '[' . $client->getErrorCode() . '] ' . $client->getErrorMessage();
} else {
$out = $client->getResponse();
}
}
}