php字符串去掉中文
windows项目迁移到linux中。有很多文件名字是中文。写个脚本批量改名。
$a = "<a>河蟹社会afeowahgieawhjozf候蛇fawgwea维稳aghoiawghowi我日</a>";
$result = preg_replace('/([\x80-\xff]*)/i','',$a);
var_dump($result); 2. [代码][PHP]代码
适合品牌专卖店专用,从前台的美工设计就开始强调视觉形象,有助于提升商品的档次,打造网店品牌!后台及程序核心比较简洁,着重在线购物,去掉了繁琐的代码及垃圾程式,在结构上更适合一些中高档的时尚品牌商品展示. 率先引入语言包机制,可在1小时内制作出任何语言版本,程序所有应用文字皆引自LANG目录下的语言包文件,独特的套图更换功能,三级物品分类,购物车帖心设计,在国内率先将购物车与商品显示页面完美结合,完
0
<?php
try
{
$hostname = "localhost";
$dbname = "xxxx";
$username = "root";
$pw = "xxxx";
$pdo = new PDO ("mysql:host=$hostname;dbname=$dbname", "$username", "$pw");
$db->query("set names utf-8");
}
catch (PDOException $e)
{
echo "Failed to get DB handle: " . $e -> getMessage() . "\n";
exit;
}
$query = $pdo -> prepare("select id,store_image FROM store");
$query -> execute();
for($i = 0; $row = $query -> fetch(); $i++)
{
$new_file = preg_replace('/([\x80-\xff]*)/i', '',$row['store_image']);
$id=$row['id'];
$sql="update store set store_image='$new_file' where id=$id";
$pdo->exec($sql);
}
/*
$it = new RecursiveDirectoryIterator("./avatar");
foreach(new RecursiveIteratorIterator($it) as $file)
{
echo $file . "\n";
$new_file = preg_replace('/([\x80-\xff]*)/i', '', $file);
rename($file, $new_file);
}
*/ 以上就是php字符串去掉中文的内容,更多相关内容请关注PHP中文网(www.php.cn)!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号