嗨,我想弄清楚如何使用 strlower 函数和 strtolower + str_replace 函数,代码如下 -<?php echo get_the_author_meta('custom_field_35', $user->ID); ?>
这是我到目前为止所拥有的,但它不起作用 -
<?php
$str = "echo get_the_author_meta('custom_field_35', $user->ID);";
$str = strtolower($str);
echo $str; // Prints mary had a little lamb and she loved it so
?>
<?php $get_the_author_meta('custom_field_36', $user->ID) = strtolower(str_replace(",", "",$get_the_author_meta('custom_field_35', $user->ID))); ?>
如何将 strtolower 和 str_replace 与 get_the_author_meta 一起使用?