你好我試圖找出如何使用strolower功能和用strtolower + str_replace函數的功能用下面的代碼 - <?php echo get_the_author_meta('custom_field_35', $user->ID); ?>
用strtolower以及類似功能
這是我有這麼遠,但它不工作 -
<?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))); ?>
如何在get_the_author_meta中使用strtolower和str_replace?
你不能設置一個功能類似的值。你將不得不應用strtolower和str_replace,然後將結果存儲在一個變量中。 – Supericy
@Marc B我有這樣的感覺,因爲我在嘗試不同的事情,看看我能否得到它的工作。 – Rich
嘗試這樣的事情將是貨運崇拜節目的標誌。做事情沒有真正理解爲什麼。 –