本文整理匯總了PHP中wpl_global::normalize_string方法的典型用法代碼示例。如果您正苦於以下問題:PHP wpl_global::normalize_string方法的具體用法?PHP wpl_global::normalize_string怎麽用?PHP wpl_global::normalize_string使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類wpl_global
的用法示例。
在下文中一共展示了wpl_global::normalize_string方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: save_watermark_image
/**
* added by Francis
* @param array $file: the array which come from $_FILE
* description : save watermark image to the specific path and
* save filename as a setting value to database
*/
private function save_watermark_image($file)
{
$filename = wpl_global::normalize_string($file['name']);
$ext_array = array('jpg', 'png', 'gif', 'jpeg');
$error = '';
$message = '';
if (!empty($file['error']) or (empty($file['tmp_name']) or $file['tmp_name'] == 'none')) {
$error = __('An error ocurred uploading your file.', WPL_TEXTDOMAIN);
} else {
// check the extention
$extention = strtolower(wpl_file::getExt($file['name']));
if (!in_array($extention, $ext_array)) {
$error = __('File extension should be jpg, png or gif.', WPL_TEXTDOMAIN);
}
if ($error == '') {
$dest = WPL_ABSPATH . 'assets' . DS . 'img' . DS . 'system' . DS . $filename;
wpl_file::upload($file['tmp_name'], $dest);
wpl_settings::save_setting('watermark_url', $filename, 2);
}
}
$response = array('error' => $error, 'message' => $message);
echo json_encode($response);
exit;
}