从基于resource / public / php / file.php的php文件访问控制器函数是否有任何可能性
我想要的是这个php文件是我用它的特殊文件:
<img src="file.php"></img>
我将禁用可读路径。所以这个php文件做了一些加密,需要连接到普通的控制器函数。
感谢
答案 0 :(得分:7)
从基于resource / public / php / file.php的php文件访问控制器函数是否有任何可能性
是的,这是可能的,但因此你需要bootstrap
TYPO3核心。或者,如果它是static
和public
方法,则可以直接调用它。
但在你的情况下,这似乎不是正确的做法。
假设您正在使用某种验证码,您应该考虑使用自己的page type
来渲染dynamic images
。这是一个有效的例子:
TypoScript设置
在TypoScript中,我们正在注册我们自己的page typ
,并将其指向我们的extension
,controller
和action
:
DynamicCaptchaImage = PAGE
DynamicCaptchaImage {
typeNum = 1234
10 = USER_INT
10 {
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
pluginName = Pi1
extensionName = MyExtName
vendorName = MyCompanyName
controller = MyExtbaseController
action = renderCaptchaImage
# view =< plugin.tx_myextname.view // you provide the view yourself
# persistence =< plugin.tx_myextname.persistence // in case you need a repository you should uncomment it
settings =< plugin.tx_myextname.settings
}
config {
disableAllHeaderCode = 1
additionalHeaders = Content-Type: image/png
xhtml_cleaning = 0
admPanel = 0
debug = 0
}
}
另请参阅:Registering a custom typeNum-based Controller access
<强>控制器强>
以下是controller
和action
应如何显示的示例:
<?php
namespace MyCompanyName\MyExtName\Controller;
/**
* MyExtbaseController
*/
class MyExtbaseController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController {
/**
* Render Captcha Image Action
*
* @return void
*/
public function renderCaptchaImageAction() {
// Send some headers
header('Content-Type: image/png');
// < do your magic stuff here >
// Breaks the script because we've sent already some headers and want
// to prevent that TYPO3 is adding another stuff (eg. for debugging purposes)
// that can break the image from loading.
// return FALSE; does not stop doing that!
exit;
}
}
另请参阅:Extbase wiki
访问控制器
现在我们已经配置了自定义page type
,我们可以通过调用TypoScript设置中的page type
来访问控制器。
EG。 http://www.example.com?type=1234指向renderCaptchaImageAction()
中的MyExtbaseController
。
<强>流体强>
在Fluid中,您可以链接到您配置的page type
:
<img src="{f:link.page(pageType: 1234)}" />
另请参阅:Fluid wiki
<强> Realurl 强>
如果您使用的是扩展程序realurl
,则可以通过以下方式将?type=1234
更改为captcha.png
:
// [...]
'fileName' => array(
'index' => array(
'captcha.png' => array(
'keyValues' => array(
'type' => 1234,
),
),
),
),
// [...]
另请参阅:Realurl wiki