从 php 自动调用 javascript 函数

Automatically calling a javascript function from php

我正在使用 codeigniter 4.0.4 构建网络应用程序。 我想在设置某个 php 变量时自动调用一次 javascript 函数。但是我不知道如何通过php或html调用函数。代码如下:

javascript函数:

function my_func(error_msg)
{
    //Logic goes here
}

php:

<?php if (isset($custom_error)): ?>
    <div class="mb-4 alert alert-danger">
        //Automatically call the javascript function named my_func() with parameter
    </div>
<?php endif; ?>
<script>my_func('<?php echo $custom_error; ?>');</script>

它的工作