芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/clients/canaldegap.fr/modules/CTLModuleMaker/src/functions/plcreatealias.php
function plcreatealias($name){ // transforms $name into a url-friendly alias // as a suggestion from AMT, the first part deals with smart quotes $search = array(chr(0xe2) . chr(0x80) . chr(0x98), chr(0xe2) . chr(0x80) . chr(0x99), chr(0xe2) . chr(0x80) . chr(0x9c), chr(0xe2) . chr(0x80) . chr(0x9d), chr(0xe2) . chr(0x80) . chr(0x93), chr(0xe2) . chr(0x80) . chr(0x94)); $name = str_replace($search, "", $name); // the second part uses the cms version $alias = munge_string_to_url($name, false); return $alias; }