Home  >  Article  >  Backend Development  >  dreamweaver怎么看PHP源码

dreamweaver怎么看PHP源码

WBOY
WBOYOriginal
2016-06-23 14:27:231174browse

PHP所他开源的 那怎么用dreamweaver看PHP源码啊   
比方说
$a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse");
echo array_shift($a);
print_r ($a);
?>

我要看array_shift怎么实现的怎么看?有快捷键吗  
因为我以前是写c++的 vs上都可以直接快捷键就能看到函数的实现了


回复讨论(解决方案)

这个你要看PHP内核了把~~  DW 好像没这个
P.s  你看的是原型  不是实现把  ~

这个你要看PHP内核了把~~  DW 好像没这个
P.s  你看的是原型  不是实现把  ~

看PHP内核?不是吧。。。。我以前c++都可以直接看的PHP没那么鸡肋吧

看下php文件,里面的扩展都是c编译的。

array_shift是PHP内核的东西,你下载PHP源码来看c的源码吧.
http://www.php.net/downloads.php

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:这是哪里错了Next article:php字符串操作问题