我有一个页面调用这个功能的
页面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 */ }
在需要时创建函数文件和覆盖的最佳方法是什么?