处理页면 show.php:
-
- include 'functions.php';
- 'shorturls.php'를 포함합니다.
-
- $entry = $_POST['제출'];
- $url = $_POST['url'];
- $출력 = '';
-
- if($entry == 'Shorten Url' AND $url)
- {
- if(!in_array($url,$shortUrls))
- {
- $uif = alphaID (count($shortUrls),false,6);
-
- if(!array_key_exists($uif,$shortUrls))
- {
- $shortUrls[$uif] = $url;
-
- $file = fopen('shorturls.php','w');
- fwrite($file,'');
- fclose($file);
- $output = '원본 URL : '.$url.'
URL 단축: http://www.yourdomain.com/api/s ='.$uif.'';
- }
- else $output = '접속 오류';
- }
- else
- {
- $uif = array_search($url,$shortUrls);
- $output = '원본 URL : '.$url.'
URL 단축: http://www.yourdomain.com/api/s ='.$uif.'';
- }
-
- echo $output.'
뒤로';
- }
- ?>
复代码
关联页화면 기능.php
-
- 함수 alphaID($in, $to_num = false, $pad_up = false, $passKey = null)
- {
- $index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
- if ($passKey !== null) {
- // 이 함수의 목적은 단지
- // ID를 짧게 만드는 것이고 그다지 안전하지는 않지만,
- // 이 패치를 사용하면 Simon Franz (http://blog.snaky.org/)
- // 선택적으로 비밀번호를 제공하여 더 어렵게 만들 수 있습니다.
- // 해당 숫자 ID를 계산하는 것이
-
- for ($n = 0; $n
- $passhash = hash('sha256',$passKey);
- $passhash = (strlen($passhash) < strlen($index))
- ? hash('sha512',$passKey)
- : $passhash;
-
- for ($n=0; $n < strlen($index); $n ) $p[] = substr($passhash, $n ,1);
-
- array_multisort($p, SORT_DESC, $i);
- $index = implode($i);
- }
-
- $base = strlen($index);
-
- if ($to_num) {
- // 디지털 숫자 <<-- 알파벳 문자 코드
- $in = strrev($in);
- $out = 0;
- $len = strlen($in) - 1;
- for ($t = 0; $t <= $len; $t ) {
- $bcpow = bcpow($base, $len - $t);
- $out = $out strpos($index, substr($in, $t, 1)) * $bcpow;
- }
-
- if (is_numeric($pad_up)) {
- $pad_up--;
- if ($pad_up > 0) $out -= pow($base, $pad_up);
- }
- $out = sprintf('%F', $out);
- $out = substr($out, 0, strpos($out, '.'));
- }
- else
- {
- // 디지털 숫자 -->> 알파벳 문자 코드
- if (is_numeric($pad_up)) {
- $pad_up--;
- if ($pad_up > 0) $in = pow($base, $pad_up);
- }
-
- $out = "";
- for ($t = Floor(log($in, $base)); $t >= 0; $t--) {
- $bcp = bcpow($base, $t);
- $a = 바닥($in / $bcp) % $base;
- $out = $out . substr($index, $a, 1);
- $in = $in - ($a * $bcp);
- }
- $out = strrev($out); // 역방향
- }
-
- return $out;
- }
- ?>
复代码
关联页면 shorturls.php
원리: 将提交的网址存放数组里面, 同时为の产生一个唯一的键, 之后将该数组存放文本中,当然你也可以存放到数据库中,此实例为存放到文本中。
유익한 즐거움
1. array_search() 실행
array_search(값,배열,엄격)
array_search()는 in_array()를 사용하여 in_array()를 검색하는 데 사용됩니다.返回 false。
2. var_export() 실행
는 var_dump()와 다른 방식으로 서로 다른 방식으로 PHP 代码을 사용합니다.
您可以通过将函数的第二个参数设置为 TRUE, 从而返回变weightative表示.
var_export() 및 var_dump()를 사용합니다.
最后是 接受页면 리디렉션.php
-
- include 'shorturls.php';
- $uid = $_GET['uid'];
- $addr = ($uid AND array_key_exists($uid,$shortUrls)) ? $shortUrls[$uid]: '/';
- header('위치:'.$addr);
- ?>
复主代码
此页face需要结合 .htaccess 또는 .waccess 使사용:
-
- RewriteEngine 켜기
- RewriteRule ^s=(.*)$ /redirect.php?uid=$1 [R=301,L]
제제대码
|