先贴代码,代码精简了。
<?php class Cache{ public function get() { $invoker = debug_backtrace(); $invoker_class = $invoker[1]["class"]; $invoker_function = $invoker[1]["function"]."_redirect"; $argus = func_get_args(); $invoker_class = str_replace("Action","", $invoker_class); D($invoker_class)->$invoker_function($argus); }}?>
描述:
程序是在ThinkPHP开发,目的是把Cache的get方法接收的参数转发到指定的方法上,
最后一行:其中D方法是ThinkPHP自带的方法用的是单例模式。如果不加参数$argus是可以正常调用的。
问题:
现在想传递参数,比如get("name","age"),完整的传递到 D($invoker_class)->$invoker_function(“name”,"age")上,有什么办法。
call_user_func 看起来像是可以,不过看不出来怎么用。
求解。
回复讨论(解决方案)
call_user_func_array(array(D($invoker_class), $invoker_function), $argus);
call_user_func_array(array(D($invoker_class), $invoker_function), $argus);
哈哈,谢谢斑竹,发帖前测试一直不成功原来是因为call_user_func_array的第二个参数必须使用数组,如果不使用数组就会没有任何反映。。
最后完整的代码如下::代码烂,见谅。。
CacheModel.class.php Cache模型文件
<?php/** * Cache 模型,在一次HTTP请求生存周期中有效的Cache,一次请求结束,Cache就清除。都在内存中 * 应用场景如下:程序某个地方读取了全部的产品种类名称和id,在另一处也读取了全部的产品种类和id,这样会造成重复数据库查询和变量的空间分配 * 构造缘由:起初准备把Cache分散在每个具体的模型里,发现这样做不好控制.不如集中控制 * @author caoyuanye * */class CacheModel extends Model{ var $cache_arr; /** * * 每个模型的最小化的方法里使用 * @param $pk */ public function get() { $invoker = debug_backtrace(); $invoker_class = $invoker[1]["class"]; $invoker_function = $invoker[1]["function"]; $argus = func_get_args(); $str = $this->caculate($argus); $base_str = md5($str); if($this->cache_arr[$invoker_class][$invoker_function]["key"] == $base_str) { echo "命中cache 没有查询"; //命中cache return $this->cache_arr[$invoker_class][$invoker_function]["value"]; } $new_invoker_class = str_replace("Model","", $invoker_class); $new_invoker_function = $invoker_function."_setCache"; $rs = call_user_func_array(array(D($new_invoker_class), $new_invoker_function), $argus); $this->cache_arr[$invoker_class][$invoker_function]["key"] = $base_str; $this->cache_arr[$invoker_class][$invoker_function]["value"] = $rs; return $rs; } /** * * 递归计算所有的参数,判定参数是否发生改变 */ private function caculate(&$argus) { $str = ""; foreach ($argus as $key => $value) { if(is_array($value)) { $str .= $this->caculate($argus[$key]); }else{ $str .= $value; } } return $str; } }?>
测试模型
TestModel.class.php
<?php/** * 测试模型 * @author caoyuanye * */class TestModel extends Model{ var $cache; function __construct() { //D方法单例模式,不用操心 $this->cache = D("Cache"); } public function run($a,$b,$c) { return $this->cache->get($a,$b,$c); } public function run_setCache($a,$b,$c) { return "设定3参数预定值<br />"; } public function run2() { return $this->cache->get(); } public function run2_setCache() { return "设定空预定值<br />"; }}?>
测试用例
TestAction.class.php
<?php/** * 测试类,专门用来测试各种类 */class TestAction extends BaseAction{ public function test_function() { $test = D("Test"); echo $test->run("a","b","c"); echo $test->run("a","b","c"); echo $test->run("a","b","c"); $test2 = D("Test"); echo $test2->run("a","b","c"); echo $test2->run2(); echo $test2->run2(); echo $test2->run2(); }}?>
测试结果:
设定3参数预定值命中cache 没有查询设定3参数预定值命中cache 没有查询设定3参数预定值命中cache 没有查询设定3参数预定值设定空预定值命中cache 没有查询设定空预定值命中cache 没有查询设定空预定值
达到预定设想,,谢谢斑竹解答。

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
