Skip to content

Instantly share code, notes, and snippets.

version: '3.7'
services:
php-fpm:
build: docker
container_name: 'php'
ports:
- '9001:9001'
volumes:
@graceman9
graceman9 / example.php
Created May 23, 2024 07:31 — forked from veganista/example.php
Getting the URL of category in OpenCart.
<?php echo $this->url->link('product/category', 'path=96'); ?>
// http://example.com/category-three/
<?php echo $this->url->link('product/category', 'path=63_78'); ?>
// http://example.com/category-one/category-two/
<?php echo $this->url->link('product/category', 'path=63_78_96'); ?>