⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xfer_scrambled.php

📁 php网页设计
💻 PHP
字号:
<?include "include/db.php";include "include/authenticate.php";include "include/general.php";include "include/resource_functions.php";include "include/image_processing.php";set_time_limit(60*60*1);ini_set("track_errors","on");#error_reporting(0);# This script moves any non-scrambled resources over to the scrambled URL.exit("You must manually enable this script."); # prevent accidental use!?><html><body><?$resources=sql_query("select ref,file_extension from resource order by ref desc");for ($n=0;$n<count($resources);$n++)	{	$ref=$resources[$n]["ref"];	$extension=$resources[$n]["file_extension"];	if ($extension=="") {$extension="jpg";}	$sizes=get_image_sizes($ref,true,$extension,false);	for ($m=0;$m<count($sizes);$m++)		{		$path=get_resource_path($ref,$sizes[$m]["id"],false,$extension,false);		if (file_exists($path))			{			$newpath=get_resource_path($ref,$sizes[$m]["id"],true,$extension,true);						echo "<li>$ref - old path=$path, new path=$newpath";			rename ($path,$newpath);			}		}	}?></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -