Topic on Project:Support desk

[RESOLVED] Line breaks in php

6
151.229.250.233 (talkcontribs)

Hi how can I do line breaks in php because I am trying to do line breaks for global in github.com/paladox/Metrolook/blob/test/MetrolookTemplate.php

Malyacko (talkcontribs)
86.135.166.204 (talkcontribs)

I tried searching on google and none show you how to do it.

Malyacko (talkcontribs)

Ok.

Florianschmidtwelzow (talkcontribs)

Really? Example:

function wtf( $really ) {
  global $wgWTFOne, $wgWTFTwo, $wgWTFThree;
  global $wgWTFFour, $wgWTFFive, $wgWTFSix;
}

->

function wtf( $really ) {
  global $wgWTFOne, $wgWTFTwo, $wgWTFThree,
    $wgWTFFour, $wgWTFFive, $wgWTFSix;
}

(sorry for my terms)

Reply to "[RESOLVED] Line breaks in php"