Heim >Backend-Entwicklung >PHP-Tutorial >下面这句代码哪里错了

下面这句代码哪里错了

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 14:27:49966Durchsuche

$aid = 11387;$_G['uid'] = 332;$tid =50;function aidencode($aid, $type = 0, $tid = 0) {	$s = !$type ? $aid.'|'.substr(md5($aid.md5('asdfasfas'.TIMESTAMP.$_G['uid']), 0, 8).'|'.TIMESTAMP.'|'.$_G['uid'].'|'.$tid : $aid.'|'.md5($aid.md5('asdfasfas').TIMESTAMP).'|'.TIMESTAMP;	return rawurlencode(base64_encode($s));}echo aidencode(11387);


麻烦知道的大哥直接给完整代码谢谢了


回复讨论(解决方案)

$aid = 11387;$_G['uid'] = 332;$tid =50;function aidencode($aid, $type = 0, $tid = 0) {    $s = !$type ? $aid.'|'.substr(md5($aid.md5('asdfasfas'.TIMESTAMP.$_G['uid'])), 0, 8).'|'.TIMESTAMP.'|'.$_G['uid'].'|'.$tid  : $aid.'|'.md5($aid.md5('asdfasfas').TIMESTAMP).'|'.TIMESTAMP;    return rawurlencode(base64_encode($s));}echo aidencode(11387);

<?php$aid = 11387;$_G['uid'] = 332;$tid =50;define('TIMESTAMP', time());function aidencode($aid, $type = 0, $tid = 0) {	global $_G;	global $tid;	$s = !$type ? $aid.'|'.substr(md5($aid.md5('asdfasfas'.TIMESTAMP.$_G['uid'])), 0, 8).'|'.TIMESTAMP.'|'.$_G['uid'].'|'.$tid : $aid.'|'.md5($aid.md5('asdfasfas').TIMESTAMP).'|'.TIMESTAMP;	return rawurlencode(base64_encode($s));}echo aidencode(11387);?>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Linux下配置apache虚拟机Nächster Artikel:字符串截取问题请教