Searching keywords from array
Posted on
16th Feb 2014 07:03 pm by
admin
Hello everyone, Im just wondering if someone could help me with another issue im having. Im still learning PHP and I have been for a few months now, but every now and then I get stuck on small things. I hope to become a regular here, but I know I cannot contribute much at the moment while im still learning. Hopefully once I know more I will try to contribute more.
Anyways to my problem im having at the moment, im trying to search for a keyword, the keywords are stored in an array and also the strings that im searching through are exploded into an array for each line (each product is on a seperate line). Heres the main portion of the code which I need help with.
Did you know?Explore Trending and Topic pages for more stories like this.
$contents = /* csv file which is being read */
$arr = explode("n",$contents);
$search = array
(
"ACCESS POINT",
"AUDIO EQUIPMENT",
"WEB CAMERA"
);
$result = "results.csv";
$fh = fopen($result, 'wa') or die("can't open file");
if ($search)
{
$i = 0;
$line = 1;
while ($i <= count($search))
{
if (strpos($arr[$line], $search[$i]) > 0)
{
$write = $arr[$line];
fwrite($fh, $write);
}
$line++;
$i++;
}
}
Ive altered it a bit to make it shorter but the part of it works when I have $search as a single keyword, however when I add the list of keywords into an array and count up using $search[$i] and $i++, it doesnt seem to search through the list of keywords for each line im searching through.
Any help or advice would be appriciated.
Thanks
No comments posted yet
Your Answer:
Login to answer
74
28
Other forums
code help - pagination
Hi all, I have this code, basically a user logs into my site and they get this page.
The pro
$variable $variables type question
I need to be able to designate an array element dynamically, so I thought to use a variable variable
Consuming third party Payment Gateway API from Procedure.
Hi All,
First of all i would like to thank all the people of the oracle forum for providi
some questions
Hello,
I am looking for the answers for following questions:
1) Does PHP support overl
Running External Scripts
I am very new to PHP and am not even sure what I'm asking is possible. I have just installed mediaW
include
Hi I have this way of licensing my PHP application, and I want to know if you guys can answer some q
FlashVar function how to insert variables
Hi guys. Im new in this forum and also new in php programming. Can you help me about this code?
<
Undefined offset when using a flat file with pipe symbols
Hi, I've got a flat file/text file which I'm currently using as a member database for my site (not a
help with image upload code
Hello,
right now this code I have resizes images and then places them into the uploads folder
PHP FTP connect doesn't work with correct login
Hi!
i am working on this test code:
Quote<?php
$ftp_ser