搜索
首页后端开发php教程PHP v5.3 新特性

1)_callStatic() magic 方法

classFoo
{
    publicstaticfunction__callStatic( $name, $args)
    {
        echo"Called method $name statically";
    } 
 
    publicfunction__call( $name, $args)
    {
        echo"Called method $name";
    }
}

Foo::dog();       
// outputs "Called method dog statically"
$foo= newFoo;
$foo->dog();      
// outputs "Called method dog"

2)<span style="font-family:nsimsun">动态调用函数</span>

classDog
{
    publicfunctionbark()
    {
        echo"Woof!";
    }
<span style="color: #333399;">} 
 
$class= "Dog"
$action= "bark";
$x= new$class(); 
// instantiates the class "Dog"
$x->$action();     
// outputs "Woof!" </span>

3) 标准PHP库(SPL)

加了了少数几个容器类,比如,栈(SplStack)和固定数组(SplFixedArray)

$stack= newSplStack(); 
 
// push a few new items on the stack
$stack->push("a");
$stack->push("b");
$stack->push("c"); 
 
// see how many items are on the stack
echocount($stack); 
// returns 3 
 
// iterate over the items in the stack
foreach( $stackas$item)
    echo"[$item],";
// the above outputs: 1
 
 [/c],[b],[a]  
// pop an item off the stack echo $stack->pop(); // returns "c"   // now see how many items are on the stack echo count($stack); // returns 2

4) Closures 功能

关于Closures,这是一个把函数定义成变量的玩意。让我们看几个例子:

示例一:

$string= "Hello World!";
$closure= function() use($string) { echo$string; };
 
$closure();

Output:
Hello World!
示例二 使用引用的变量

$x= 1
$closure= function() use(&$x) { ++$x; }
 
echo$x. "\\n";
$closure();
echo$x. "\\n";
$closure();
echo$x. "\\n";

Output:
1
2
3
示例三,返回值

functiongetAppender($baseString)
{
      returnfunction($appendString) use($baseString)
  { return$baseString.$appendString; };
}

示例四,Reflection

classCounter
{
      private$x;
 
      publicfunction__construct()
      {
           $this->x = 0;
      }
 
      publicfunctionincrement()
      {
           $this->x++;
      }
 
      publicfunctioncurrentValue()
      {
           echo$this->x . "\\n";
      }
}
$class= newReflectionClass("Counter");
$method= $class->getMethod("currentValue");
$closure= $method->getClosure()
$closure();
$class->increment();
$closure();

Output:
0
1
示例五,Reflection API

$closure= function($x, $y= 1) {};
$m= newReflectionMethod($closure);
Reflection::export ($m);
<strong>Output</strong>:
Method [  publicmethod __invoke ] {
  - Parameters [2] {
    Parameter #0 [  $x]
    Parameter #1 [  $y]
  }
}

示例六,Uses Case

$logdb= function($string) { Logger::log("debug","database",$string);};
$db= mysqli_connect("server","user","pass");
$logdb("Connected to database");
$db->query("insert into parts (part, description) values
 ("Hammer","Pounds nails");
$logdb("Insert Hammer into to parts table");
$db->query("insert into parts (part, description) values
       ("Drill","Puts holes in wood");
$logdb("Insert Drill into to parts table");
$db->query("insert into parts (part, description) values
 ("Saw","Cuts wood");
$logdb("Insert Saw into to parts table");

更为详细的文章,请参考这里,链接。

5) 使用namespace

新版的PHP会开始支持C++式的namespace,请参看示例:

示例一

/* Foo.php */
<?php
namespaceFoo;
functionbar()
{
    echo"calling bar....";
}
?> 
 
/* File1.php */
<?php
include"./Foo.php";
Foo/bar(); 
// outputs "calling bar....";
?> 
 
/* File2.php */
<?php
include"./Foo.php";
useFoo asns;
ns/bar(); 
// outputs "calling bar....";
?> 
 
/* File3.php */
<?php
include"./Foo.php";
useFoo;
bar(); 
// outputs "calling bar....";
?>
<!--p include"./Foo.php"; useFoo; bar(); 
// outputs "calling bar....";-->

示例二,多重namespace

<!--p namespaceFoo; classTest {}  namespaceBar; classTest {}  $a= newFoo\\Test; $b= newBar\\Test;  var_dump($a, $b);--> <?php
namespaceFoo;
classTest {} 
 
namespaceBar;
classTest {} 
 
$a= newFoo\\Test;
$b= newBar\\Test; 
 
var_dump($a, $b); 
 
Output:
object(Foo\\Test)#1 (0) {
}
object(Bar\\Test)#2 (0) {
}
<strong>Output:</strong>
object(Foo\\Test)#1 (0) { }
object(Bar\\Test)#2 (0) { }

示例三,不同文件中的namespace

/*定义*/
/* global.php */
<?php
functionhello()
{
    echo"hello from the global scope!";
}
?> 
 
/* Foo.php */
<?php
namespaceFoo;
functionhello()
{
    echo"hello from the Foo namespace!";
}
?> 
 
/* Foo_Bar.php */
<?php
namespaceFoo/Bar;
functionhello()
{
    echo"hello from the Foo/Bar namespace!";
}
?>
<!--p namespaceFoo/Bar; functionhello() {     echo"hello from the Foo/Bar namespace!"; }-->
 
/*使用 */
<!--p include"./global.php"; include"./Foo.php"; include"./Foo_Bar.php"; useFoo;  hello();         
// outputs "hello from the Foo namespace!" Bar\\hello();   // outputs "hello from the Foo/Bar namespace!" \\hello();       // outputs "hello from the global scope!"--><?php
include"./global.php";
include"./Foo.php";
include"./Foo_Bar.php";
 
useFoo; 
 
hello();         
// outputs "hello from the Foo namespace!"
Bar\\hello();   
// outputs "hello from the Foo/Bar namespace!"
\\hello();       
// outputs "hello from the global scope!"
?>

更为详细的文章,请参考这里,链接。

6)开始支持Achieve包

正像JAR一样,PHP也要开始支持自己的Achieve包了,叫作,Phar。PHP提供了一整套函数来帮助开发人员创建和使用Phar,正如下面的示例所示:

创建

$p= newPhar("/path/to/my.phar",
 CURRENT_AS_FILEINFO | KEY_AS_FILENAME, "my.phar");
$p->startBuffering();

创建文件存根(stub)

$p->setStub("<!--p Phar::mapPhar();  include "phar:
//myphar.phar/index.php"; __HALT_COMPILER();-->");

加入文件

$p["file.txt"] = "This is a text file";
$p["index.php"] = file_get_contents("index.php");
$p["big.txt"] = "This is a big text file";
$p["big.txt"]->setCompressedBZIP2();
//加入某目录下所有的文件
$p->buildFromDirectory("/path/to/files","./\\.php$/");

使用Phar

include"myphar.phar";
include"phar://myphar.phar/file.php";

更为详细的文章,请参考这里,链接。

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
高流量网站的PHP性能调整高流量网站的PHP性能调整May 14, 2025 am 12:13 AM

TheSecretTokeEpingAphp-PowerEdwebSiterUnningSmoothlyShyunderHeavyLoadInVolvOLVOLVOLDEVERSALKEYSTRATICES:1)emplactopCodeCachingWithOpcachingWithOpCacheToreCescriptexecution Time,2)使用atabasequercachingCachingCachingWithRedataBasEndataBaseLeSendataBaseLoad,3)

PHP中的依赖注入:初学者的代码示例PHP中的依赖注入:初学者的代码示例May 14, 2025 am 12:08 AM

你应该关心DependencyInjection(DI),因为它能让你的代码更清晰、更易维护。1)DI通过解耦类,使其更模块化,2)提高了测试的便捷性和代码的灵活性,3)使用DI容器可以管理复杂的依赖关系,但要注意性能影响和循环依赖问题,4)最佳实践是依赖于抽象接口,实现松散耦合。

PHP性能:是否可以优化应用程序?PHP性能:是否可以优化应用程序?May 14, 2025 am 12:04 AM

是的,优化papplicationispossibleandessential.1)empartcachingingcachingusedapcutorediucedsatabaseload.2)优化的atabaseswithexing,高效Quereteries,and ConconnectionPooling.3)EnhanceCodeWithBuilt-unctions,避免使用,避免使用ingglobalalairaiables,并避免使用

PHP性能优化:最终指南PHP性能优化:最终指南May 14, 2025 am 12:02 AM

theKeyStrategiestosiminificallyBoostphpapplicationPermenCeare:1)useOpCodeCachingLikeLikeLikeLikeLikeCacheToreDuceExecutiontime,2)优化AtabaseInteractionswithPreparedStateTemtStatementStatementSandProperIndexing,3)配置

PHP依赖注入容器:快速启动PHP依赖注入容器:快速启动May 13, 2025 am 12:11 AM

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增强codemodocultion,可验证性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

PHP中的依赖注入与服务定位器PHP中的依赖注入与服务定位器May 13, 2025 am 12:10 AM

选择DependencyInjection(DI)用于大型应用,ServiceLocator适合小型项目或原型。1)DI通过构造函数注入依赖,提高代码的测试性和模块化。2)ServiceLocator通过中心注册获取服务,方便但可能导致代码耦合度增加。

PHP性能优化策略。PHP性能优化策略。May 13, 2025 am 12:06 AM

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)启用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替换loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

PHP电子邮件验证:确保正确发送电子邮件PHP电子邮件验证:确保正确发送电子邮件May 13, 2025 am 12:06 AM

phpemailvalidation invoLvesthreesteps:1)格式化进行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

将Eclipse与SAP NetWeaver应用服务器集成。

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

SecLists

SecLists

SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

安全考试浏览器

安全考试浏览器

Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。