0
我正在嘗試在我的頁面中打印某些內容。我有一系列日期和數字。當我使用循環時,打印的數字以及日期。我只想顯示數字。我怎樣才能做到這一點?我甚至使用類型鑄造,但仍然不好。請幫忙。如何在php-codeigniter中只顯示日期的數字?
這裏的方式是代碼...
$date = $this->controllerModel->processData($this->input->post('textarea'));
for ($i = 0; $i < sizeof($date); $i++){
echo "array[".$i."] = " . $date[$i];
echo "<br /><br />";
}
$tempVar = array(array());
$k = 0;
for($i = 1; $i < 250; $i++){
for($j = 0; $j < sizeof($date); $j++){
if($i == $date[$j]){
$tempVar[$i][$k] = $date[$j];
}
}
}
for($i = 1; $i < 250; $i++){
for($j = 0; $j < sizeof($date); $j++){
if(empty($tempVar[$i][$j])){
echo ".";
}
else echo $tempVar[$i][$j];
}
}
}
在我的模型......
public function processData($textarea){
$data = explode("_", $textarea);
return $data;
}
textarea的是輸入框。
編輯:輸入...
36 _ Arnel Lent _ 2/14/2014 0:33
36 _ Arnel Lent _ 2/14/2014 4:35
21 _ Roche Ingk _ 2/14/2014 7:48
199 _ Emmanuel Muring _ 2/14/2014 7:50
199 _ Emmanuel Muring _ 2/14/2014 7:50
你可以給循環提供樣本值/輸入嗎? – Vainglory07