FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Regarding split text and match from data base
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: Regarding split text and match from data base [message #183956 is a reply to message #183955] Fri, 29 November 2013 03:47 Go to previous messageGo to previous message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma:
Senior Member
On 11/28/2013 9:34 PM, Ben Bacarisse wrote:
> Jerry Stuckle <jstucklex(at)attglobal(dot)net> writes:
>
>> On 11/28/2013 1:51 PM, Ben Bacarisse wrote:
>>> Jerry Stuckle <jstucklex(at)attglobal(dot)net> writes:
>>>
>>>> On 11/28/2013 7:27 AM, Ben Bacarisse wrote:
> <snip>
>>>> > As a result of changing the capture order, I'd also be tempted to
>>>> > re-write the loop:
>>>> >
>>>> > <snip>
>>>> >> $macs = ''; // *4
>>>> >> foreach ($matches as $match) {
>>>> >> if ($macs != '') // Not the first time through, so
>>>> >> $macs .= ', '; // Add a separator
>>>> >> $macs .= '\'' . mysqli_real_escape_string($link, $match[2])
>>>> >> . '\''; // Append the next MAC address (again all one line above)
>>>> >> }
>>>> >
>>>> > as $macs = "'" . join("', '", $matches[1]) . "'";
>>>>
>>>> Which doesn't work when you capture both MAC and IP.
>>>
>>> You can if you just write 2 instead of 1, but I suspect that's not what
>>> you meant. You can't do this if you collect in 'set' order rather than
>>> 'pattern' order, but even if the IP address is captured there's no clear
>>> reason to choose set order (so far as we know).
>>
>> No, because your regex did not parse out the ip.
>
> It parses it, it just doesn't capture it. When you capture both MAC and
> IP (to use your exact phrase) you just replace 1 with 2. Am I missing
> your point?
>

Ah, OK, I understand you now. But it still doesn't work if you use set
order.

>> And again, pattern
>> order breaks the linkage between ip and mac address. I chose that
>> because if the OP wants the ip also, it would not make sense to use it
>> without the mac address.
>
> We should agree to disagree on this. I can think of ways in which the
> IP address might be used where pattern order is still better (for
> example, building another query but using IP addresses this time) but
> there are also cases where set order will be more logical or helpful.
> However, I made the suggestion based on what your code actually did.
>

My code was based on the OP's overall requirements. This is just a
small part of the whole script, I believe.

> Going back to the OP's code I see that he or she wants to print the IP
> as well. Your loop was:
>
> while ($data = mysqli_fetch_row($res))
> echo $data['mac_id'] . ' ' . $data['mac_name'] . "\n";
>
> and we can add the IP address just as easily with either capture
> ordering.
>

Very easy to do with set order. Each pair is matched up - ip address in
element 1 and mac address in element 2 of the array. It is very easy to
use foreach() to go through the base array and access element 1 and
element 2 of the internal array, as I did. If you use pattern order,
you can't do that.

But I think we are arguing a matter of style here. I also use pattern
order when appropriate. In this case I still think set order is more
appropriate.

>>>> Additionally,
>>>> you don't call mysqli_real_escape_string() for the values. Yes, I
>>>> know it's not actually required here - but it's a good habit for new
>>>> programmers to get into. It's much better to call it when not needed
>>>> than to not call it when it is needed.
>>>
>>> Well, you can't mean that literally (there are places where it's not
>>> needed where using it would break the code) but I know what you are
>>> getting at. Part of the equation should be, in my view, how likely it
>>> is that the quoting will be needed. Given the context (mac addresses)
>>> it's not very likely, and I'd take that into account.
>>>
>>> <snip>
>>
>> Yes, I do mean that literally. And there is no place where you call
>> it for strings that will break the code. If there is, I would like
>> you to show it. mysqli_real_escape_string is about more than quoting.
>
> I think we are talking at cross purposes. You mean (I think) that it's
> never wrong to call it when it might be right to call it -- and that's
> true. I took your "better to call it when not needed" absolutely
> literally. For example, if the string is already quoted it is "not
> needed" and calling it will break something.
>

No, if the string is already quoted, it will not "break something".
Only if the string has already been processed through
mysqli_real_escape_string() could there be a problem. Any other method
of "quoting" is not supported.

And yes, I will still recommend using mysqli_real_escape_string(), even
when not needed (at least right now it's not needed).

And yes, when working with people unfamiliar with a language (here or in
my classes), I ALWAYS go on the side of caution. It keeps people out of
trouble more often than not. They learn the conservative rules, and
later learn when it is OK to break those rules - rather than vice versa.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: creating key / hash
Next Topic: from mysql in associative array
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu Sep 19 22:19:41 GMT 2024

Total time taken to generate the page: 0.07750 seconds