Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 454 Vote(s) - 3.45 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Replace string matching a pattern with it's value, but differently formatted

#1
I have a function on my mybb that displays the date of the last post: $lastpostdate

Function prints values in this format: 01-27-2016, 12:31 am

I need this to be displayed otherwise, but I don't want to modify the function itself, because it's being used in multiple places on the webpage - where the original format suits me.

So basically I need something working like this:

1. get $lastpostdate value
2. present it in a different form

I was thinking of making a conditional (so in a specific place, the date format would be different) looking somewhat like this:

if ($lastpostdate = regex match(original form))
{
print($lastpostdate but in different form);
}

I actually just need to make this:

$lastpostdate='<span>01-27-2016, 12:31 am</span>';

Into this:

$lastpostdate_after='<span>01-27-2016,<br />12:31 am</span>';


I guess it should be easier to clone the function and adjust the format in it and then use the custom form.

I can use only PHP.

**Solved:**

**A plugin is required in order to add php into templates: [PHP and Template Conditionals (2.1) by ZiNgA BuRgA][1]**

**Replace {$lastpostdate} with:**

<?php
$input=$lastpostdate;
$output =str_replace(',', ',<br />', $input);
print($output);
?>

This is not a conditional.


[1]:

[To see links please register here]

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through