[ciapug] Array building

Chris Van Cleve ciapug@cialug.org
Wed, 11 May 2005 15:46:55 -0500


Unfortunately, that's what I did. here is the code of the full file=20
which turns up blank. (I'm hoping to test it on another web server=20
later)

<?php
// Build array of meta information
$meta =3D array (
	'keywords'			=A0=3D> 'Some text',
	'htdig-keywords'=A0=3D> 'Some text',
	'description'=A0	 =3D> 'Some text',
	'author'=A0				 =3D> 'Some text',
	'revisit-after'=A0 =3D> 'Some text',
	'distribution'=A0	 =3D> 'Some text',
	'generator'			=A0=3D> 'Some text',
	'rating'				=A0=3D> 'Some text'
);

echo "<pre>";
echo var_dump($meta);
echo "</pre>";

?>

On May 11, 2005, at 3:25 PM, Dave J. Hala Jr. wrote:

> Try this:
>
>
> echo "<PRE>";
> echo var_dump($decoded_value);
> echo "</PRE>";
>
>
> On Wed, 2005-05-11 at 14:27, Chris Van Cleve wrote:
>> FInally getting back around to this. To answer some of the below
>> questions:
>>
>> 1. This is the first thing in the file. The only preceeding code is
>> <?php
>>
>> 2. I placed the code in a stand-alone file, with a var_dump($meta) =
and
>> I get a blank page. Go figure.
>>
>> Chris VC
>>
>> On Apr 14, 2005, at 12:28 PM, Tony Bibbs wrote:
>>
>>> Odds are you are missing an ')' or ';' in the lines preceeding the
>>> code snippet you gave.
>>>
>>> --Tony
>>>
>>> Laith wrote:
>>>
>>>> I think you have some other issue in the fime that is confusing
>>>> things.
>>>>
>>>> when I place that code into a test.php I get no errors and I can
>>>> var_dump($meta)
>>>>
>>>>
>>>>
>>>> Chris Van Cleve wrote:
>>>>
>>>>> No line 3 is:
>>>>>
>>>>>>>     'keywords' =3D> 'Some text',
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> On Apr 13, 2005, at 12:30 PM, Dave J. Hala Jr. wrote:
>>>>>
>>>>>> It looks ok to me. Is $meta =3D array on line three?
>>>>>>
>>>>>> On Wed, 2005-04-13 at 12:18, Chris Van Cleve wrote:
>>>>>>
>>>>>>> I have never had a reason to hand build an array before, and now
>>>>>>> that I
>>>>>>> have a reason I cannot seem to get it to work. Is there any=20
>>>>>>> reason
>>>>>>> the
>>>>>>> following is not valid?
>>>>>>>
>>>>>>> // Build array of meta information
>>>>>>> $meta =3D array (
>>>>>>>     'keywords' =3D> 'Some text',
>>>>>>>     'htdig-keywords' =3D> 'Some text',
>>>>>>>     'description' =3D>'Some text',
>>>>>>>     'author' =3D> 'Some text',
>>>>>>>     'revisit-after' =3D> 'Some text',
>>>>>>>     'distribution' =3D> 'Some text',
>>>>>>>     'generator' =3D> 'Some text',
>>>>>>>     'rating' =3D> 'Some text'
>>>>>>> );
>>>>>>>
>>>>>>> It's not single vs double quotes. It throws the same error =
either
>>>>>>> way:
>>>>>>>
>>>>>>> [error] PHP Parse error:  parse error, unexpected T_STRING,
>>>>>>> expecting
>>>>>>> ')' in /path/to/document/index.php on line 3
>>>>>>> _______________________________________________
>>>>>>> ciapug mailing list
>>>>>>> ciapug@cialug.org
>>>>>>> http://cialug.org/mailman/listinfo/ciapug
>>>>>>
>>>>>>
>>>>>> --=20
>>>>>>
>>>>>> Open Source Information Systems (OSIS)
>>>>>> Dave J. Hala Jr. <dave@osis.us>
>>>>>> 641.485.1606
>>>>>>
>>>>>> _______________________________________________
>>>>>> ciapug mailing list
>>>>>> ciapug@cialug.org
>>>>>> http://cialug.org/mailman/listinfo/ciapug
>>>>>>
>>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> ciapug mailing list
>>>>> ciapug@cialug.org
>>>>> http://cialug.org/mailman/listinfo/ciapug
>>>>
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> ciapug mailing list
>>>> ciapug@cialug.org
>>>> http://cialug.org/mailman/listinfo/ciapug
>>>
>>>
>>> _______________________________________________
>>> ciapug mailing list
>>> ciapug@cialug.org
>>> http://cialug.org/mailman/listinfo/ciapug
>>>
>>>
>>
>> _______________________________________________
>> ciapug mailing list
>> ciapug@cialug.org
>> http://cialug.org/mailman/listinfo/ciapug
> --=20
>
> Open Source Information Systems (OSIS)
> Dave J. Hala Jr. <dave@osis.us>
> 641.485.1606
>
> _______________________________________________
> ciapug mailing list
> ciapug@cialug.org
> http://cialug.org/mailman/listinfo/ciapug
>
>