如何覆盖php函数

时间:2017-03-16 08:31:17

标签: php function override

我有一个页面调用这个功能的

页面

myfunction.php

function create($array) { /* create new one in db */ }

function modify($array) { /* modify a row in database */ }

function delete($array) { /* delete a row from database */ }

... (other function)

并且有一些页面需要不同的创建内容功能......

然后我创建了这个文件,但是我收到了错误

myfunction2.php

include myfunction.php

function create($array) { /* create new one in db */ } 

在需要时创建函数文件和覆盖的最佳方法是什么?

0 个答案:

没有答案