我在 CodeIgniter 中使用 form_helper:
$current = $this->lang->mci_current();
$uri = 'contact';
$url = $this->lang->mci_make_uri($current, $uri); // output "en/contact"
echo form_open($url);
问题:
如何修改 form_helper 以将其更改为默认值:
echo form_open('contact');
但具有我在之前的代码中定义的功能。
我假设,我可以在那里制作我自己的表单助手
( ../application/helpers/MY_form_helper.php
) 以了解如何修改它以及如何使用我自己的助手?
如果我在 helper 前面加上“my_”,这意味着我覆盖了默认的 form_helper?我需要扩展默认的 form_helper 吗?
这就是我设法做到的:
注意:我是 MVC 和 OOP 的新手,学习 CodeIgniter
我的尝试:
if (!function_exists('form_open')) {
function form_open($action = '', $attributes = '', $hidden = array()) {
$CI = & get_instance();
$current = $CI->lang->mci_current();
$action = $CI->lang->mci_make_uri($current, $action);
if ($attributes == '') {
$attributes = 'method="post"';
}
// If an action is not a full URL then turn it into one
if ($action && strpos($action, '://') === FALSE) {
$action = $CI->config->site_url($action);
}
// If no action is provided then set to the current url
$action OR $action = $CI->config->site_url($CI->uri->uri_string());
$form = '<form action="' . $action . '"';
$form .= _attributes_to_string($attributes, TRUE);
$form .= '>';
// Add CSRF field if enabled, but leave it out for GET requests and requests to external websites
if ($CI->config->item('csrf_protection') === TRUE AND !(strpos($action, $CI->config->base_url()) === FALSE OR strpos($form, 'method="get"'))) {
$hidden[$CI->security->get_csrf_token_name()] = $CI->security->get_csrf_hash();
}
if (is_array($hidden) AND count($hidden) > 0) {
$form .= sprintf("<div style=\"display:none\">%s</div>", form_hidden($hidden));
}
return $form;
}
}