array-push

    -1熱度

    3回答

    我試圖將SQL查詢中的行(結果)保存到csv文件中。 我正在使用數組推送爲了把結果放在一個列表中。後來我把這個列表中的數據放到我的csv文件中。 我的代碼: while ($row = $query->fetch_assoc()) { echo sprintf($row['campaign']); array_push($list, $row['campaign']);

    0熱度

    1回答

    我收集使用的foreach和的preg_match一些數據,如果的preg_match是真的,那將添加元素,以發現了數組$,但返回此錯誤: PHP Warning: array_push() expects parameter 1 to be array, string given in upfiles.php line 324 $found = array(); foreach($t

    -1熱度

    1回答

    您好我爲我的網站使用mvc結構, 我有一個類,其中包含一個多維數組與類instanciation在這樣的: protected $db; /* Construit une instance avec 4 poèmes. */ public function __construct() { $this->db = array( "01" => new Poem("Ma bo

    0熱度

    1回答

    想法是,當您單擊Volgende時,將$ getal1,$ getal1,$ soort和$ antwoord放入數組中。如果這是第二次,那就是第一次和第二次。 這是我在英語 PHP代碼 <?php $kind = $_SESSION['kind'];//get the kind of task choose from +-/* $class = $_SESSION['class'];//ge

    0熱度

    1回答

    我拉從Adobe Analytics(分析)的報告,我試圖將結果保存在一個CSV文件CSV文件。這裏是我的代碼的描述: <?php include_once('/path/SimpleRestClient.php'); // Creation of csv filepath $adobe_file = $sql_path = '/path/adobe.csv'; // List cre

    -2熱度

    1回答

    我有一個數組,其中只包含一次header.php文件。 的header.php: <? session_start(); include_once("array.php"); ?> array.php: <?$foo["cart"] = array();?> 在order.php我具有被提交表單時執行的陣列和代碼。在array_push之後,您將被重定向到webshop.php,您可

    0熱度

    2回答

    foreach ($hash as $h) { array_push($users, $h['entities']['urls'][0]['expanded_url']); } 我也想推$h['created_at']爲$users所以它會是這個樣子: Array ( [0] => Array ( [0] => 'http://www.google

    3熱度

    2回答

    我創建它返回一個JSON文件,HTML文件,我填補了從data.php文件中的數據網格中data.php文件。 我需要這是在以下形式的關聯數組: [ {"CompanyName":"Alfreds Futterkiste","ContactName":"Maria Anders","ContactTitle":"Sales Representative"}, {"CompanyName":"A

    1熱度

    2回答

    我在綁定.. 這是我想要的輸出; Array ( [country] => Array( [0] => England [1] => Channel Islands ) [gor] => Array( [0] => North East [1] => North West ) [parliam

    -3熱度

    2回答

    我正在從我的數組中接收一個整數值,而不是名稱。我如何糾正我的代碼從數組中隨機選擇一個名稱? $family = array(); array_push($family, "joe"); array_push($family, "bill"); array_push($family, "carl"); $sorted = sort($family);