本文整理匯總了PHP中CUtils::toTranslit方法的典型用法代碼示例。如果您正苦於以下問題:PHP CUtils::toTranslit方法的具體用法?PHP CUtils::toTranslit怎麽用?PHP CUtils::toTranslit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CUtils
的用法示例。
在下文中一共展示了CUtils::toTranslit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setAttributes
/**
* Автоматическая установка всех полей в записи из запроса
*
* @param array $array
*/
public function setAttributes(array $array)
{
foreach ($this->fieldsProperty() as $field => $property) {
if ($property['type'] == FIELD_UPLOADABLE) {
// загрузка файлов из загружаемых полей
if (array_key_exists($this::getClassName(), $_FILES)) {
if ($_FILES[$this::getClassName()]['tmp_name'][$field] !== "") {
$fileName = CUtils::toTranslit($_FILES[$this::getClassName()]['name'][$field]);
$fileName = date("dmY_His") . "_" . $fileName;
/**
* Проверяем, что upload_dir существует
* Если его нет, то создадим
*/
$uploadDir = $property["upload_dir"];
$uploadDir = explode(CORE_DS, $uploadDir);
$checkPath = CORE_DS;
foreach ($uploadDir as $path) {
if ($path !== "") {
$checkPath .= $path . CORE_DS;
if (!file_exists($checkPath)) {
mkdir($checkPath, 0777);
}
}
}
while (file_exists($property['upload_dir'] . $fileName)) {
$fileName = date("dmY_His") . "_" . $fileName;
}
move_uploaded_file($_FILES[$this::getClassName()]['tmp_name'][$field], $property['upload_dir'] . $fileName);
$array[$field] = $fileName;
}
}
}
}
foreach ($array as $key => $value) {
$this->{$key} = $value;
}
}