Sponsored Content
Full Discussion: PHP arrays in arrays
Top Forums Web Development PHP arrays in arrays Post 302274113 by Corona688 on Tuesday 6th of January 2009 05:13:51 PM
Old 01-06-2009
Code:
<?php

$a=array(1 => "Fred");
$b=array(1 => 1);

echo $a[$b[1]], "\n";

?>

works. So I think your issue is not with your nested arrays but with some other area of syntax.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Arrays

Dear all, How can i unset arrays. I mean all the subscripts including the array after using them. Could you direct me to some links of array memory handling in the korn shell. Thanks (2 Replies)
Discussion started by: earlysame55
2 Replies

2. Shell Programming and Scripting

PHP arrays as array elements

PHP question...I posted this on the Web Development forum, but maybe this is a better place! I have an SQL query that's pulled back user IDs as a set of columns. Rather than IDs, I want to use their names. So I have an array of columns $col with values 1,7,3,12 etc and I've got an array $person... (3 Replies)
Discussion started by: JerryHone
3 Replies

3. UNIX for Dummies Questions & Answers

arrays how to?

Hello, I am some what of a newbie to awk scripting and I seem to be struggling with this problem. I know I need to use arrays but I can't figure out how to use them. I have an input file that looks like this; Name,Team,First Test, Second Test, Third Test Crystal,Red,5,17,22... (1 Reply)
Discussion started by: vlopez
1 Replies

4. Shell Programming and Scripting

PHP Compare 2 Arrays find difference & case insensitive

Hi, I need an elegant solotion in php. I need to compare 2 arrays (array1 & array2), to find all instances of array 2 which is not in array1. I don't want to see any instances of array1 wich is not in array2 (here "the") Array1: This, is, the, data, of, array1 Array2: this, is, data, Of,... (2 Replies)
Discussion started by: lowmaster
2 Replies

5. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

6. Programming

question about int arrays and file pointer arrays

if i declare both but don't input any variables what values will the int array and file pointer array have on default, and if i want to reset any of the elements of both arrays to default, should i just set it to 0 or NULL or what? (1 Reply)
Discussion started by: omega666
1 Replies

7. Shell Programming and Scripting

How can I use the arrays ?

Hi all, I have a file test1.txt with the below contents abc def ghj xyz I tried printing these values using arrays. Script tried : =========== set -A array1 `cat test1.txt` count=${#array1 } i=0 while do echo "element of array $array1" done (1 Reply)
Discussion started by: dnam9917
1 Replies

8. Programming

Populating Associate Arrays in PHP

I'm not very good at associative arrays; and working on this PHP code has got me a bit stumped. My goal is to populate a (multidimensional) associative array in a PHP while look after a MySQL query. The code fragment looks like this: while($campaign_row = mysql_fetch_array($campaigninfo)) { ... (9 Replies)
Discussion started by: Neo
9 Replies

9. Programming

Arrays in C++

I've noticed something interesting in C++ programming. I've always done tricky stuff with pointers and references to have functions deal with arrays. Doing exercises again out of a C++ book has shown me an easier way, I didn't even know was there. It's weird to me. When dealing with arrays, it... (4 Replies)
Discussion started by: John Tate
4 Replies

10. Shell Programming and Scripting

Using arrays?

I have never used arrays before but I have a script like this: var1=$(for i in $(cat /tmp/jobs.021013);do $LIST -job $i -all | perl -ne 'print /.*(\bInfo.bptm\(pid=\d{3,5}).*/' | tr -d "(Info=regpid" | tr -d ')'; $LIST -job $i -all | cut -f7 -d','| sed -e "s/^\(*\)\(*\)\(*\)\(.*\)/\1... (2 Replies)
Discussion started by: newbie2010
2 Replies
memory(3)						     Library Functions Manual							 memory(3)

Name
       memccpy, memchr, memcmp, memcpy, memmove, memset - memory operations

Syntax
       #include <string.h>

       void *memccpy (s1, s2, c, n)
       void *s1, *s2;
       int c;
       size_t n;

       void *memchr (s, c, n)
       void *s;
       int c;
       size_t n;

       int memcmp (s1, s2, n)
       void *s1, *s2;
       size_t n;

       void *memcpy (s1, s2, n)
       void *s1, *s2;
       size_t n;

       void *memset (s, c, n)
       void *s;
       int c;
       size_t n;

       void *memmove (s1, s2, n)
       void *s1, *s2;
       size_t n;

Description
       These functions operate efficiently on memory areas (arrays of characters bounded by a count, not terminated by a null character).  They do
       not check for the overflow of any receiving memory area.

       The subroutine copies characters from memory area s2 into s1, stopping after the first occurrence of character c has been copied, or  after
       n  characters  have been copied, whichever comes first.	It returns a pointer to the character after the copy of c in s1, or a NULL pointer
       if c was not found in the first n characters of s2.

       The subroutine returns a pointer to the first occurrence of character c in the first n characters of memory area s, or a NULL pointer if  c
       does not occur.

       The  subroutine compares its arguments, looking at the first n characters only, and returns an integer less than, equal to, or greater than
       0, according as s1 is lexicographically less than, equal to, or greater than s2.

       The subroutine copies n characters from memory area s2 to s1.  It returns s1.

       The subroutine is like , except that if s1 and s2 specify overlapping areas, works as if an intermediate buffer is used.

       The subroutine sets the first n characters in memory area s to the value of character c.  It returns s.

Restrictions
       The subroutine uses native character comparison, which is signed on PDP-11s, unsigned on other machines.

       Character movement is performed differently in different implementations of and Thus overlapping moves, using these subroutines, may  yield
       unpredictable results.

																	 memory(3)
All times are GMT -4. The time now is 08:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy