Shaun Murphy (soccer)
Shaun Peter Murphy (born 5 November 1970) is an Australian former association football player. His club career included stints with Notts County (1992–1997), West Bromwich Albion (1997–1999), Sheffield United (1999–2003) and Crystal Palace (2001–02) in England, before returning to Australia for one season to captain Perth Glory (2003–04).
Personal information | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Full name | Shaun Peter Murphy | |||||||||||||||
Date of birth | 5 November 1970 | |||||||||||||||
Place of birth | Sydney, Australia | |||||||||||||||
Height | 185 cm (6 ft 1 in) | |||||||||||||||
Playing position(s) | Centre back | |||||||||||||||
Youth career | ||||||||||||||||
1988 | Australian Institute of Sport | |||||||||||||||
– | Blacktown City Demons | |||||||||||||||
– | Heidelberg United | |||||||||||||||
Senior career* | ||||||||||||||||
Years | Team | Apps | (Gls) | |||||||||||||
1990–1991 | Perth Italia | |||||||||||||||
1992–1997 | Notts County | 109 | (5) | |||||||||||||
1996–1999 | West Bromwich Albion | 71 | (7) | |||||||||||||
1999 | Sorrento | |||||||||||||||
1999–2003 | Sheffield United | 158 | (9) | |||||||||||||
2001–2002 | → Crystal Palace (loan) | 11 | (0) | |||||||||||||
2003–2004 | Perth Glory | 28 | (4) | |||||||||||||
National team‡ | ||||||||||||||||
1989 | Australia U-20 | |||||||||||||||
1992 | Australia U-23 | |||||||||||||||
2000–2001 | Australia | 18 | (3) | |||||||||||||
Honours
| ||||||||||||||||
* Senior club appearances and goals counted for the domestic league only and correct as of 26 July 2007 ‡ National team caps and goals correct as of 26 July 2007 |
He was a member of the Australian national team and scored a winner against Brazil for Australia in the 2001 Confederations Cup third place play-off match.[1] He also represented Australia at the 1992 Summer Olympics.
International career
International goals
- Scores and results list Australia's goal tally first.[2]
No | Date | Venue | Opponent | Score | Result | Competition |
---|---|---|---|---|---|---|
1. | 28 June 2000 | Stade Pater Te Hono Nui, Papeete, Tahiti | 1–0 | 2–0 | 2000 OFC Nations Cup | |
2. | 30 May 2001 | Suwon World Cup Stadium, Suwon, South Korea | 1–0 | 2–0 | 2001 FIFA Confederations Cup | |
3. | 9 June 2001 | Ulsan Munsu Football Stadium, Ulsan, Japan | 1–0 | 1–0 | 2001 FIFA Confederations Cup |
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != None: io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```
gollark: Which do you think is slower: the execution or generation of strings?
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): try: print(exec(x)) except Exception as e: print(f"{e} from {x}")```
gollark: I should multithread this!
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): print(x)```<@!330678593904443393>
References
- "Australia defeat Brazil in Confederations Cup". Telegraph. 9 June 2001. Retrieved 19 August 2013.
- "Murphy, Shaun". National Football Teams. Retrieved 9 May 2017.
External links
- OzFootball profile
- Shaun Murphy at Soccerbase
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.