Tagged Questions
0
votes
1answer
16 views
Order by One Custom Field Value and Select Posts From Another With Wordpress
I'm trying to only show posts that are marked as in-stock and order them by their inventory_number (which is a number value so I'm using meta_value_num). The code below is selecting in-stock items, ...
-3
votes
3answers
36 views
PHP - How to sort Array from MySQL database
I am retrieving data from a MySQL database with mysqli. I am retrieving rows from the data base, the database has a name and a number for that name and I need the name with the highest number to be ...
0
votes
5answers
40 views
PHP How do I “global variable” in an array?
Global variable can't be read on my function. Anyone know what's wrong with my code below?
Please help me.
<?php
global $a = array(2,3,4);
global $b = array(3,5,6);
function test(){
$y ...
-2
votes
2answers
51 views
PHP converting array [closed]
I have such question
I have this array
Array
(
[0] => Array
(
[0] => 164
[ID] => 164
[1] => 1368840229
[TIME] => 1368840229
...
0
votes
5answers
35 views
How to delete the values of an array by key number. Is it even possible?
I have come seeking the wisdom of all of you wise and smart people! After looking all day yesterday and a few hours today i've given up. I've tried many things but nothing has worked and i've come to ...
2
votes
1answer
35 views
How to wrap around in PHP array when index falls off the end?
I want to be able to retrieve the value of an array by using the numeric key. The catch is that if the key is beyond the array length, I need it to loop through the array again.
$my_array = ...
0
votes
1answer
15 views
identifying Identical array key matches and specifying output for different matching sets
I have created a simple function that returns a value depending on which Keys have matching values with the exception that if the key is empty or null then this does not count. My code is below.
...
-1
votes
1answer
65 views
What php datastructure is this?
I have a variable/data structure in its original state, that when var_dump() 'ed', looks like this:
string 'some name' (length=13)
string 'another name ' (length=16)
string 'another name ' ...
-3
votes
1answer
19 views
Sort php/mysql microstime [closed]
what is the shortest and most beautiful way to sort an microtime value, which is importet from a mysql database, with php that the latest date/time is on the top or the first value of an array.
Thanks
...
1
vote
6answers
45 views
PHP converting Strings to Arrays back to Strings
I am pulling data from a query that has the following output:
1
2
3
5
I am converting it into an array like so:
$string = explode("\n", $result);
I know have an array displaying ...
-1
votes
4answers
48 views
Check two consecutive values in php array
I have a multidimensional php array like this
$array[0] = array('status' => 'Waiting' , 'number' => 10);
$array[1] = array('status' => 'Missed' , 'number' => 20);
$array[2] = ...
-1
votes
5answers
43 views
Memorizing mysql query with rand in php
$query= "select * from table ORDER BY RAND()" ;
$result = mysql_query($query);
if(!isset($_get['submit']))
$_SESSION['a']=$result;
else
$result=$_SESSION['a'] ;
while ($row = ...
1
vote
2answers
39 views
Best way of returning array values without keys in PHP
I have this array and I want to return the value's as an array from this array (confusing myself here).
array (size=5)
6 => int 12058
7 => int 12061
12 => int 12057
13 => int 12063
...
0
votes
3answers
35 views
using continue in a for loop to skip an array value
I have tried to retrieve data from a database and then compare it with a variable and using for loop and continue to skip numbers found in the database but it only skips the first number from loop ...
0
votes
4answers
37 views
how unset or delete some nested array in $_SESSION
I have some items in shop basket in SESSION.
Each item maybe be for one shop and another item maybe for another shop.
I want when customer click in create factor button for each shop item list in ...
1
vote
3answers
18 views
Converting csv files data to an array using php str_getcsv function
I have string like which is created using fputcsv
Date,Name,Hours 2013-01-02,"Test User",7:59 2013-01-03,"Test User",7:53 2013-01-04,"Test User",8:12 2013-01-07,"Test User",7:56 2013-01-08,"Test ...
3
votes
1answer
49 views
How to identify if given number is there in a given array range?
I have an array which stores numbers. The count of numbers varies time to time. There is another variable which a holds number, and I need to find out in which range $num falls. In the above case $num ...
0
votes
0answers
32 views
Regex with PHP - Can't add preg_grep indexes to file
So, I need to make a script that reads a .csv file, find name: xxxxx with regex, and add the regex results to a txt file.
My Php Script:
<?PHP
$array=array();
$file_handle = ...
2
votes
4answers
48 views
PHP ini vs array performance
I wonder what is faster:
loading/including a php file that contains some static data in an array within a function or
parsing an ini-file that contains the data and puts it into an arary
I need ...
-1
votes
1answer
38 views
Implement two-dimensional array [closed]
I need to implement two-dimensional array in PHP. Is it a correct way to do this?
$constr = array();
for ($i = 0; $i < $size; $i++)
{
for ($j=0; $j < $ncons; $j++) {
...
-4
votes
1answer
18 views
extract the keyvalue from array variable cakephp [closed]
I have an array that gives me the data like this
Array
(
[5079906a-6eb4] => Selling
)
Now I want to use this (5079906a-6eb4) value for my further processing.
My question is how to extract ...
0
votes
4answers
62 views
How seperate php array with same value and not same
I have a shop basket with for example 6 items. Some items are for one shop and another items for one and maybe two shops.
I want create factors for each shops. How can I do? How can I known these ...
1
vote
2answers
37 views
Order arrays by price within an array after foreach loop php
I have created an array of arrays (I think) during a foreach loop:
$collectGroup = array();
foreach ($topTenList->searchResult->item as $group) {
$collectGroup['title'] = $group->title;
...
0
votes
1answer
48 views
PHP loop through explode()
I am currently using two fields from a database, The fields have words which are seperated by comma's (,).
Here is my code
$tags = explode(",",$tags);
$tagsdesc = explode(",",$tagsdesc);
...
1
vote
4answers
33 views
Display element of 2nd array whose suffix matched with 1st array
I have two arrays, i.e.:
array('ly', 'ful', 'ay')
and
array('beautiful', 'lovely', 'power')
I want to print the content of second array whose suffix matched with first array. i.e. the output ...
0
votes
0answers
35 views
Extract data from session array
I have a session data using jcart and I want to extract some data into textbox
http://pastebin.com/0r54iSgj
How do I get the data :
[1] => Soccer Ball
[1] => 25.00
[1] => 2
1
vote
2answers
25 views
How to remove index from array in PHP?
Suppose I have such an array in php:
$ray =
Array
(
[0] => Array
(
[id] => 1
[0] => 1
[ip] => 127.0.0.1
[1] => 127.0.0.1
...
1
vote
0answers
32 views
Recursive word group array searching
I've been working on search function that will let me group specific words then recursively search for them in an array and I've coded myself into a hole I think. This is my first foray into ...
0
votes
2answers
26 views
Why can't I shuffle an array properly with shuffle in PHP?
Here is a function that reproduces my issue. I have an array. Inside the array is array( 0 => 'l', 1 => 'j', 2 => 'b'). Notice how b is always at the end no matter what I do.
private ...
0
votes
3answers
51 views
Really simple [closed]
Very new to PHP Arrays and can't find out how to do a simple thing.
This is what I started out with:
<div class="crew-member">
<?php
$crewMember = "Tony Webster";
...
1
vote
2answers
43 views
php 2d array sorting with unique
I've got this array:
Array
(
[0] => Array
(
[id] => new@particip.pl
[challs] =>
)
[1] => Array
(
...
0
votes
0answers
26 views
Sorting Array Based On SQL Column To Populate Multiple DropDowns (conditionally)
I am having a writer's block and can't seem to figure out an easy way to do this. Basically, I have several HTML select fields that are currently all being populated based on ALL cable_types in the ...
0
votes
2answers
59 views
Sending array using ajax
I'm sending this array using ajax
code jquery:
$("#btnReact").on("click", function (e) {
var post = {};
post["comment"] = $("#bug_message").val();
post["id"] = $(this).data("bid");
...
0
votes
2answers
25 views
Passing arrays of varying size to setters/functions in Php
I am relatively new to PHP and have searched quite extensively but can't quite figure out the solution to my problem.
I am trying to figure out how to use setters in a class where the variable being ...
0
votes
2answers
18 views
PHP output to file for download without creating file on the server
I would like to output my data to a file for the user to download without actually creating the file physically on the server. The data of the file is simply array that I'm converting into a CSV ...
-4
votes
5answers
53 views
PHP - change all keys and convert key to value [closed]
I am trying to convert an array(). Like:
array([1] => post [2] => category [3] => tags);
I want to covert above array to:
array([post] => 1 [category] => 1 [tags] => 1);
All ...
0
votes
2answers
27 views
How do i go about replacing a value at a index in a array in php
What I am trying to do is replace a value of a JSON array at the index where the username matches. How do I go about doing this? Below is my trial PHP code and my JSON. Is using array_replace the best ...
-1
votes
1answer
29 views
Sort array `B` given array `A` while keeping some elements intact
I have an array A that serves as a based to sort array B, however, I would like to preserve the position of an element in B if it doesn't exist in array A.
$A = array (
0 => 'Peter',
1 => ...
0
votes
1answer
48 views
Exclude elements of one array from another array
I need to exclude elements of the array $tempobjects from the array $objects. What is the quickest way to do this?
$objects = new MyObjects();
$tempobjects = new MyObjects();
for($i=0; $i<10; ...
2
votes
1answer
19 views
php - scandir and return matched files
I am trying to get a matched array of files using scandir() and foreach().
when I run scandir() then it returns all file list. Its okey here.
now in second step when I do foreach scandir()s array ...
-4
votes
3answers
36 views
PHP Error: Cannot use object of type stdClass as array (array and object issues) [duplicate]
i was trying to copy this code.
<?php
foreach ($products as $product){
$id = $product['id'];
$name = $product['name'];
$description = $product['description'];
$price = $product['price'];
...
1
vote
1answer
35 views
Doctrine array vs simple_array vs json_array
I use symfony and doctrine as ORM, in available type I have array, simple_array, or json_array
I wonder what is the difference beetween each of them ? And when to use one or the other ? Do you have a ...
-2
votes
6answers
48 views
php getting value from array when enabled or disabled [closed]
Before asking this question I want to tell you is I am really a newbie in php.
In php I have an array from where I am getting the status as 0 or 1. So the array from where I am getting the value is ...
5
votes
1answer
87 views
array_splice preserving keys
I faced the situation that splicing arrays with preserved-keys, so I made the following function.
I reached the solution that wrapping each items with array, but there seems to be some ...
0
votes
1answer
72 views
I don't understand this array usage
First of all, I apologise for the title, I didn't found a good one for this problem.
I'm working on a Symfony project which already exists and I need to add something. So I'm reading it and I came to ...
0
votes
1answer
40 views
PHP How do you define an array and reference it in a class?
I have written a php class to use in a small script to just run any query that I like from other scripts. This is NOT going to be used publicly or in production, and I'm aware of the huge security ...
1
vote
3answers
37 views
Compare date time in an array
I have an array which contain datetime
array(3) {
[1368090995]=>
object(stdClass)#375 (1) {
["submitted"]=>
string(10) "1368090995"
}
[1368091032]=>
object(stdClass)#376 (1) ...
0
votes
5answers
47 views
Comparing 2 arrays with different lengths
I have 2 arrays that I wish to compare and update the score if a match is found:
One_array[0] = bla
One_array[1] = blabla
One_array[2] = blablabla
Two_array[0] = bla
Two_array[1] = blabla
...
-4
votes
1answer
41 views
How to access/edit/delete variables in a class [closed]
What is the best way to accomplish the following:
class foobar {
public $a = 'one';
private $b = 'two';
}
$obj = new foobar();
( here )
From ( here ) how is the following accomplished?
...
-1
votes
5answers
47 views
How to sort an Array of Associative Arrays by a Value [duplicate]
So I have an array:
$array = (
array('name' => 'John' , 'total' => '33'),
array('name' => 'Robert' , 'total' => '66'),
array('name' => 'John' , 'total' => '22'),
)
I ...











