Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/70.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如果函数_存在,是否取消设置它?_Php - Fatal编程技术网

Php 如果函数_存在,是否取消设置它?

Php 如果函数_存在,是否取消设置它?,php,Php,我有一个类似于: function custom_field( $something ) { // code goes here } 在特殊情况下,我想以某种方式解除它。我有类似于tride的东西: if (function_exists("custom_field")) { unset(custom_field()); } 当我得到“致命错误:无法在写上下文中使用函数返回值”时,unset的使用将不起作用 如何取消设置函数?我已经检查了runkit\u function\u

我有一个类似于:

function custom_field( $something ) {
   // code goes here
}
在特殊情况下,我想以某种方式解除它。我有类似于tride的东西:

if (function_exists("custom_field")) {
    unset(custom_field());
}
当我得到“致命错误:无法在写上下文中使用函数返回值”时,unset的使用将不起作用

如何取消设置函数?我已经检查了
runkit\u function\u remove
(不确定这是否能解决我的问题),但需要安装PECL,我的主机不会为我安装

有什么建议吗

编辑:

我将更新更多代码(使用wordpress和woocommerce):

我会显示如下复选框:

add_action('woocommerce_after_order_notes', 'my_custom_checkout_field1');

function my_custom_checkout_field1( $checkout22 ) {


    echo '<div id="my-new-field"><h3>'.__('Homedelivery:').'</h3>';

    woocommerce_form_field( 'Homedelivery', array(
        'type'          => 'checkbox',
        'class'         => array('input-checkbox'),
        'label'         => __('Message here.'),
        'required'  => false,
        ), $checkout22->get_value( 'my_checkbox' ));

    echo '</div>';
}


add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process1');

function my_custom_checkout_field_process1() {
    global $woocommerce;

    // Check if set, if its not set add an error.
    if (!$_POST['my_checkbox']) {
         //$woocommerce->add_error( __('Please agree to my checkbox.') );
         $_POST['my_checkbox'] = "Customer wants to be home when package is delivered.";
         } else {
             $_POST['my_checkbox'] = "Customers sais its ok the leave the package outside the door.";
         }

}


add_action('woocommerce_checkout_update_order_meta1', 'my_custom_checkout_field_update_order_meta');

function my_custom_checkout_field_update_order_meta1( $order_id ) {
    if ($_POST['my_checkbox']) update_post_meta( $order_id, 'My Checkbox', esc_attr($_POST['my_checkbox']));
}

这怎么能解决呢?

试图取消函数的设置是非常奇怪的,PHP不会让你这么做。

你不能。一开始就不要包括它。你为什么需要这样的东西?如果您遇到名字冲突,请考虑使用A。无论您试图解决什么问题,都可以通过另一种方式来解决。您的用例不清楚,但可能是。@ HTML的复选框与PHP函数完全不同。现在我完全不明白你的意思。
function payment_gateway_disable_country($available_gateways) {

    global $woocommerce;

    $packages = $woocommerce->shipping->get_packages();

    foreach ( $packages as $i => $package ) {
        $chosen_method = isset( $woocommerce->session->chosen_shipping_methods[ $i ] ) ?
        $woocommerce->session->chosen_shipping_methods[ $i ] :  '';

        // hämta i kyrkhult
        if ('local_pickup' == $chosen_method) {  
            global $woocommerce;
            foreach ($woocommerce->cart->cart_contents as $key => $values ) {

        if($values['product_id'] && get_field('farskvara',$values['product_id'])){

        unset($available_gateways['cod']);

        break;
        } else {

            unset($available_gateways['cod']);
        }
        }

        } elseif ('flat_rate' == $chosen_method) {  

    global $woocommerce;
    foreach ($woocommerce->cart->cart_contents as $key => $values ) {

        if($values['product_id'] && get_field('farskvara',$values['product_id'])){

        unset($available_gateways['cheque']);


        break;
        } else {
            unset($available_gateways['cheque']);

        }
        }

    } elseif ('local_delivery' == $chosen_method) {

    global $woocommerce;
    foreach ($woocommerce->cart->cart_contents as $key => $values ) {

        if($values['product_id'] && get_field('farskvara',$values['product_id'])){

        unset($available_gateways['cheque']);
        break;
        } else {
            unset($available_gateways['cheque']);
        }
        }


    }

    }

return $available_gateways;

}

add_filter(
    'woocommerce_available_payment_gateways',
    'payment_gateway_disable_country'
);