PHP hack的使用技巧详解
程序员文章站
2024-02-18 19:04:46
...
PHP hack示例:
- ?php
- $tabs = array();
- function tabs_header()
- {
- ?>
- style type="text/css">
- .tab {
- border-bottom: 1px solid black;
- text-align: center;
- font-family: arial, verdana;
- }
- .tab-active {
- border-left: 1px solid black;
- border-top: 1px solid black;
- border-right: 1px solid black;
- text-align: center;
- font-family: arial, verdana;
- font-weight: bold;
- }
- .tab-content {
- padding: 5px;
- border-left: 1px solid black;
- border-right: 1px solid black;
- border-bottom: 1px solid black;
- }
- /style>
- php
- }
- function tabs_start()
- {
- ob_start();
- }
- function endtab()
- {
- global $tabs;
- $text = ob_get_clean();
- $tabs[ count( $tabs ) - 1 ][ 'text' ] = $text;
- ob_start();
- }
- function tab( $title )
- {
- global $tabs;
- if ( count( $tabs ) > 0 )
- endtab();
- $tabs []= array(
- title => $title,
- text => ""
- );
- }
- function tabs_end( )
- {
- global $tabs;
- endtab( );
- ob_end_clean( );
- $index = 0;
- if ( $_GET['tabindex'] )
- $index = $_GET['tabindex'];
- ?>
- table width="100%" cellspacing="0" cellpadding="0">
- tr>
- ?php
- $baseuri = $_SERVER['REQUEST_URI'];
- $baseuri = preg_replace( "/?.*$/", "", $baseuri );
- $curindex = 0;
- foreach( $tabs as $tab )
- {
- $class = "tab";
- if ( $index == $curindex )
- $class ="tab-active";
- ?>
- td class="">
- a href="?tabindex=".$curindex ); ?>">
- ?php echo( $tab['title'] ); ?>
- /a>
- /td>
- ?php
- $curindex += 1;
- }
- ?>
- /tr>
- tr> td class="tab-content" colspan="">
- ?php echo( $tabs[$index ]['text'] ); ?>
- /td>tr>
- /table>
- ?php
- }
- ?>
以上这一大段的代码就是有关PHP hack的具体实现方法。
推荐阅读
-
PHP hack的使用技巧详解
-
php使用curl抓取qq空间的访客信息示例_PHP
-
php使用smtp和pop3的问题
-
php+mysqli使用预处理技术进行数据库查询的方法,mysqli预处理
-
PHP数组操作汇总 php数组的使用技巧_PHP教程
-
PHP的explode和implode的使用说明
-
PHP中Snoopy类的使用
-
PHP没有数据库连接池怎么破?PHP环境下使用Nginx ngx_http_limit_req_module模块的高负载解决方案_PHP教程
-
在Yii2中使用Pjax导致Yii2内联脚本载入失败的原因分析,yii2pjax_PHP教程
-
php使用number_format函数截取小数的方法分析