当前位置:  编程技术>php
本页文章导读:
    ▪php 扑克牌代码的简单例子      php 扑克牌代码,如下: <?php /*** * * A simple class to cut a deck of cards * @version CVS: $Id:$ * @since Class available since Release 1.0.0 * Example use * * $cards = new cards; * echo $cards->cut(); * www: */.........
    ▪php 云标签的实现代码      在如今的php网站中,云标签的大量应用,使页面显得生效而有趣,也增加了相关内容的索引与检索。 本节分享一段php 云标签的实现代码,有兴趣的朋友,可以研究下。 1,css代码部分 <sty.........
    ▪php 匹配apache日志日期的代码      以下代码可用于匹配apache日志中的日期,然后得到类似:17 Dec 06 03:26:49 -0500的返回结果。 php得到apache日志中的日期,如下: <?php // Set the default timezone to US/Eastern time: date_default_timezone_set('.........

[1]php 扑克牌代码的简单例子
    来源: 互联网  发布时间: 2013-12-24

php 扑克牌代码,如下:

<?php
/*** 
*
* A simple class to cut a deck of cards
* @version    CVS: $Id:$
* @since      Class available since Release 1.0.0

* Example use
*
* $cards = new cards;
* echo $cards->cut();
* www: 
*/


class cards{

/**
*
* Declare our deck variable 
*
*/
private $deck;

/**
*
* Constructor.. duh!
*
*/
function __construct(){

  /*** set the deck array variable ***/
  $this->deck=$this->setDeck();
}

/**
*
* Function set Deck
*
* @access private
*
* @return array
*
*/
private function setDeck(){
return array("ah", "ac", "ad", "as",
               "2h", "2c", "2d", "2s",
               "3h", "3c", "3d", "3s",
               "4h", "4c", "4d", "4s",
               "5h", "5c", "5d", "5s",
               "6h", "6c", "6d", "6s",
               "7h", "7c", "7d", "7s",
               "8h", "8c", "8d", "8s",
               "9h", "9c", "9d", "9s",
               "th", "tc", "td", "ts",
               "jh", "jc", "jd", "js",
               "qh", "qc", "qd", "qs",
               "kh", "kc", "kd", "ks");
}

/**
*
* Function get Key get the array key
*
* @access private
*
* @return INT
*
*/
private function getKey(){
  shuffle($this->deck);
  return array_rand($this->deck);
}

/**
*
* @Function cut, get the value of the array key
*
* @access public
*
* @return string
*
*/
public function cut(){
  return $this->deck[$this->getKey()];
}

} /*** end of class ***/


$cards = new cards;
echo $cards->cut();

?>

    
[2]php 云标签的实现代码
    来源: 互联网  发布时间: 2013-12-24

在如今的php网站中,云标签的大量应用,使页面显得生效而有趣,也增加了相关内容的索引与检索。
本节分享一段php 云标签的实现代码,有兴趣的朋友,可以研究下。

1,css代码部分

<style type="text/css">
#tagcloud{
        color: #dda0dd;
        font-family: Arial, verdana, sans-serif;
        width:200px;
        border: 1px solid black;
 text-align: center;
}

#tagcloud a{
        color: green;
        text-decoration: none;
        text-transform: capitalize;
}
</style>

2,php 云标签的展示部分

<div id="tagcloud">
<?php
/** this is our array of tags
 * We feed this array of tags and links the tagCloud
 * class method createTagCloud
 */
$tags = array(
        array('weight'  =>40, 'tagname' =>'tutorials', 'url'=>'http://www./tutorials/'),
        array('weight'  =>12, 'tagname' =>'examples', 'url'=>'http://www./examples/'),
        array('weight'  =>10, 'tagname' =>'contact', 'url'=>'http://www./contact/'),
        array('weight'  =>15, 'tagname' =>'quotes', 'url'=>'http://www./quotes/'),
        array('weight'  =>28, 'tagname' =>'devel', 'url'=>'http://www./phpdev/'),
        array('weight'  =>35, 'tagname' =>'manual', 'url'=>'http://www./en/index.html'),
        array('weight'  =>20, 'tagname' =>'articles', 'url'=>'http://www./articles/'),
);
 
/*** create a new tag cloud object ***/
$tagCloud = new tagCloud($tags);

echo $tagCloud -> displayTagCloud();

?>
</div>
</body>
</html>
<?php
/**
* php 云标签类
* by www.
*/
class tagCloud{

/*** the array of tags ***/
private $tagsArray;


public function __construct($tags){
 /*** set a few properties ***/
 $this->tagsArray = $tags;
}

/**
 *
 * Display tag cloud
 *
 * @access public
 *
 * @return string
 *
 */
public function displayTagCloud(){
 $ret = '';
 shuffle($this->tagsArray);
 foreach($this->tagsArray as $tag)
    {
    $ret.='<a .$tag['weight'].'px;" href="'.$tag['url'].'">'.$tag['tagname'].'</a>'."\n";
    }
 return $ret;
}
    

} /*** end of class ***/

?>

php 云标签的演示效果,如下图:


    
[3]php 匹配apache日志日期的代码
    来源: 互联网  发布时间: 2013-12-24

以下代码可用于匹配apache日志中的日期,然后得到类似:17 Dec 06 03:26:49 -0500的返回结果。

php得到apache日志中的日期,如下:

<?php
// Set the default timezone to US/Eastern time:
date_default_timezone_set('US/Eastern');

// Simulate reading an Apache log file, with the following line:
$logline = '127.0.0.1 - - [17/dec/2006:00:26:49 -0800] "GET / HTTP/1.1" 200 41228';

// Since we only want the date section, use regex to obtain it:
preg_match('/\[(.*?)\]/', $logline, $matches);

// Take the date, and convert it:
$timestamp = strtotime($matches[1]);

// Now echo it out again to ensure that we read it correctly:
echo date(DATE_RFC822, $timestamp);
?>

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3