是我得到的,每次我使用这个,
$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;
在我的代码中,它破坏了我的 CSS。好吧,不一定是废墟,但我的页面好像没有使用任何 CSS 来对齐或其他东西。
我需要那个 DS,因为我必须调用该目录中的文件
$encryption['cert_file'] = $certpath.$encryption['cert_file'];
我试过这个:
$encryption['key_file'] = $certpath.DS.$encryption['key_file'];
$encryption['cert_file'] = $certpath.DS.$encryption['cert_file'];
$encryption['paypal_cert_file'] = $certpath.DS.$encryption['paypal_cert_file'];
仍然没有运气。前两行以这种方式工作,但第三行则不然。
我尝试使用这些关键字进行谷歌搜索:
directory separator in cakephp ruins my css
uses of directory separator in cakephp
calling files using directory separator in cakephp
但这些都没有帮助我。
DS 只是一个目录分隔符吧?什么可能是错的?
.......... 编辑部分
好吧,这是另一个问题,我从上一个问题中找到了罪魁祸首,但请解释一下它与我的问题有何关系。这是我的 PaypalHelper.php
<?php
$importConfig = array(
'type' => 'File',
'name' => 'PaypalIpn.ppcrypto',
//'file' => CONFIGS .'paypal_ipn_config.php'
'file' => APP."Plugin".DS."paypal_ipn".DS."libs".DS."ppcrypto.php"
);
//... other codes
//..other functions
function button($title, $options = array(), $buttonOptions = array()) {
//..other codes
$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;
//..other codes
}
?>
看到这段代码了吗?
$importConfig = array(
'type' => 'File',
'name' => 'PaypalIpn.ppcrypto',
//'file' => CONFIGS .'paypal_ipn_config.php'
'file' => APP."Plugin".DS."paypal_ipn".DS."libs".DS."ppcrypto.php"
);
和这个?
$certpath = APP."Plugin".DS."PaypalIpn".DS."Controller".DS."Certificates".DS;
$encryption['paypal_cert_file'] = $certpath.$encryption['paypal_cert_file'];
$importConfig..这是错误的,因为它应该是
$importConfig = array(
'type' => 'File',
'name' => 'PaypalIpn.ppcrypto',
//'file' => CONFIGS .'paypal_ipn_config.php'
'file' => APP."Plugin".DS."PaypalIpn".DS."libs".DS."ppcrypto.php"
);
..但是当我试图纠正它时, $encryption['paypal_cert_file'] 工作正常。它不会破坏/(禁用??)我的CSS
我首先将其作为答案,但我相信我的脑海中仍然存在问题..